diff options
Diffstat (limited to 'src/util/memory.c')
| -rw-r--r-- | src/util/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/memory.c b/src/util/memory.c index d18c01f..f05efae 100644 --- a/src/util/memory.c +++ b/src/util/memory.c @@ -46,7 +46,7 @@ void *try_calloc(size_t size) { return alloc(calloc_func, size); } void *try_realloc(void *ptr, size_t size) { void *result = realloc_func(ptr, size); if (!result) { - perror("Couldn't alloc."); + perror("Couldn't realloc."); exit(EXIT_FAILURE); } return result; |
