diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 7fa2790cb1e..6262e002ed3 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -6057,7 +6057,7 @@ We divide the value by 1024 to make sure it fits in a Lisp integer. */) | |||
| 6057 | { | 6057 | { |
| 6058 | Lisp_Object end; | 6058 | Lisp_Object end; |
| 6059 | 6059 | ||
| 6060 | XSETINT (end, (EMACS_INT) sbrk (0) / 1024); | 6060 | XSETINT (end, (EMACS_INT) (char *) sbrk (0) / 1024); |
| 6061 | 6061 | ||
| 6062 | return end; | 6062 | return end; |
| 6063 | } | 6063 | } |