summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmalloc.c b/xmalloc.c
index 4e7f35d..52850a8 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -114,7 +114,7 @@ xrealloc(void *p, size_t size)
if (allocated == NULL && size > 0)
{
fprintf(stderr,
- "Error: Insufficient memory (attempt to xrealloc %zu bytes)\n",
+ "Error: Insufficient memory (attempt to realloc %zu bytes)\n",
size);
exit(EXIT_FAILURE);