diff options
Diffstat (limited to 'include/slibc-alloc.h')
-rw-r--r-- | include/slibc-alloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/slibc-alloc.h b/include/slibc-alloc.h index 18e7341..3c92fcf 100644 --- a/include/slibc-alloc.h +++ b/include/slibc-alloc.h @@ -111,7 +111,7 @@ void* secure_realloc(void*, size_t) /** * This function behaves exactly like `fast_realloc`, except: * - Its behaviour is undefined if `ptr` is `NULL`. - * - Its behaviour is undefined `size` equals the old allocation size. + * - Its behaviour is undefined if `size` equals the old allocation size. * - Its behaviour is undefined if `size` is zero. * - It will never free `ptr`. * |