diff options
Diffstat (limited to 'src/stdlib/aligned_alloc.c')
-rw-r--r-- | src/stdlib/aligned_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/aligned_alloc.c b/src/stdlib/aligned_alloc.c index f699014b..6fa28e9f 100644 --- a/src/stdlib/aligned_alloc.c +++ b/src/stdlib/aligned_alloc.c @@ -5,7 +5,7 @@ void *aligned_alloc(size_t alignment, size_t size) { SIGNAL_SAFE(0); - return __jkmalloc(NULL, NULL, 0, NULL, alignment, size, 0); + return __jkmalloc(NULL, NULL, 0, NULL, alignment, size, 0, NULL); } /* |