summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2024-01-26 20:47:02 +0100
committerpgen <p.gen.progs@gmail.com>2024-01-26 20:47:02 +0100
commitb4d9222733d389cffd3b21bf679ab952dec47b4f (patch)
tree1fc640c4605bdbba24ac9713ca01dddf24c97d35
parenta604f325cf77000f9a055c5fbbeae740cf77aed3 (diff)
Typo
-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);