diff options
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 9356ebeb6cb..b26146c27f3 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -393,7 +393,7 @@ sf_get_ptr (Lisp_Object *fp, enum stack_frame_index index) | |||
| 393 | INLINE void | 393 | INLINE void |
| 394 | sf_set_ptr (Lisp_Object *fp, enum stack_frame_index index, void *value) | 394 | sf_set_ptr (Lisp_Object *fp, enum stack_frame_index index, void *value) |
| 395 | { | 395 | { |
| 396 | fp[index] = XIL ((EMACS_INT)value); | 396 | fp[index] = XIL ((uintptr_t)value); |
| 397 | } | 397 | } |
| 398 | 398 | ||
| 399 | INLINE Lisp_Object * | 399 | INLINE Lisp_Object * |