diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-09-29 21:35:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-09-29 21:35:08 +0000 |
commit | f24155cd29c6f30158d5c3df03c63b0c9ca30775 (patch) | |
tree | 404472105d827f02c41f6d5ff4466457f552733d /libc/stdlib/malloc/alloc.c | |
parent | c85e07fe25123c39fdaf8a6326c02c0baf0c8492 (diff) |
Minor cleanup
Diffstat (limited to 'libc/stdlib/malloc/alloc.c')
-rw-r--r-- | libc/stdlib/malloc/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/malloc/alloc.c b/libc/stdlib/malloc/alloc.c index a521cf2e8..99537a35d 100644 --- a/libc/stdlib/malloc/alloc.c +++ b/libc/stdlib/malloc/alloc.c @@ -52,7 +52,7 @@ void free_dbg(void *ptr, char *function, char *file, int line) void *realloc_dbg(void *ptr, size_t size, char *function, char *file, int line) { fprintf(stderr, "realloc of %p to %ld bytes at %s @%s;%d = ", ptr, - size, function, file, line); + (long)size, function, file, line); ptr = realloc(ptr, size); fprintf(stderr, "%p\n", ptr); return ptr; |