From 50c9de2ed8746a83002f51e74eae7b0378e1785e Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 4 Mar 2007 20:10:27 +0100 Subject: [PATCH] string.c para_realloc(): report requested size on realloc failures --- string.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/string.c b/string.c index 91f96bdc..0a55ed20 100644 --- a/string.c +++ b/string.c @@ -49,7 +49,8 @@ __must_check __malloc void *para_realloc(void *p, size_t size) * to realloc is equivalent to malloc(size) */ if (!(p = realloc(p, size))) { - PARA_EMERG_LOG("%s", "realloc failed, aborting\n"); + PARA_EMERG_LOG("realloc failed (size = %zu), aborting\n", + size); exit(EXIT_FAILURE); } return p; -- 2.39.5