diff options
Diffstat (limited to 'man3/malloc_hook.3')
| -rw-r--r-- | man3/malloc_hook.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man3/malloc_hook.3 b/man3/malloc_hook.3 index 55076d1487..2f9336f923 100644 --- a/man3/malloc_hook.3 +++ b/man3/malloc_hook.3 @@ -115,7 +115,7 @@ my_malloc_hook(size_t size, const void *caller) /* Save underlying hooks */ old_malloc_hook = __malloc_hook; - /* `printf' might call `malloc', so protect it too. */ + /* printf() might call malloc(), so protect it too. */ printf("malloc(%u) called from %p returns %p\\n", (unsigned int) size, caller, result); |
