mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-15 19:31:29 -07:00
(r_alloc_sbrk): Declare already_available as long, not SIZE.
This commit is contained in:
parent
f7f794916d
commit
89ccd65a24
1 changed files with 4 additions and 1 deletions
|
|
@ -351,7 +351,10 @@ r_alloc_sbrk (size)
|
|||
/* This is the first address not currently available for the heap. */
|
||||
POINTER top;
|
||||
/* Amount of empty space below that. */
|
||||
SIZE already_available;
|
||||
/* It is not correct to use SIZE here, because that is usually unsigned.
|
||||
ptrdiff_t would be okay, but is not always available.
|
||||
`long' will work in all cases, in practice. */
|
||||
long already_available;
|
||||
POINTER ptr;
|
||||
|
||||
if (! use_relocatable_buffers)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue