aboutsummaryrefslogtreecommitdiffstats
path: root/man3/malloc_hook.3
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2007-12-18 07:47:22 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2007-12-18 07:47:22 +0000
commit2d986c928cd406ac09c7a336e3d1f16afa148123 (patch)
tree9ad0c1be46a66ab1e4a6c5dceb6be75d04730899 /man3/malloc_hook.3
parenta40ee90ba21fc8a8e8e1343c5ea221fca6296a26 (diff)
downloadman-pages-2d986c928cd406ac09c7a336e3d1f16afa148123.tar.gz
Replace `...' with alternate formatting (e.g., ".." or .I)
Diffstat (limited to 'man3/malloc_hook.3')
-rw-r--r--man3/malloc_hook.32
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);