summaryrefslogtreecommitdiff
path: root/src/stdlib/realloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/realloc.c')
-rw-r--r--src/stdlib/realloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/realloc.c b/src/stdlib/realloc.c
index 17696bbf..35e12d26 100644
--- a/src/stdlib/realloc.c
+++ b/src/stdlib/realloc.c
@@ -8,7 +8,7 @@ void * realloc(void * ptr, size_t size)
{
SIGNAL_SAFE(0);
- return __jkmalloc(NULL, NULL, 0, ptr, 1, size, 0);
+ return __jkmalloc(NULL, NULL, 0, ptr, 1, size, 0, NULL);
}
/***