From 38044e1b07e81da268bcaeb20d7c2755727a71b6 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 15 Feb 2002 12:06:48 +0000 Subject: [PATCH] (xrealloc): Always pass two args to `fatal'. --- lib-src/cvtmail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib-src/cvtmail.c b/lib-src/cvtmail.c index 20ef3412439..85c5512abfc 100644 --- a/lib-src/cvtmail.c +++ b/lib-src/cvtmail.c @@ -174,6 +174,6 @@ xrealloc (ptr, size) { char *result = realloc (ptr, size); if (!result) - fatal ("virtual memory exhausted"); + fatal ("virtual memory exhausted", 0); return result; } -- 2.39.2