From: Eli Zaretskii Date: Fri, 15 Feb 2002 12:06:48 +0000 (+0000) Subject: (xrealloc): Always pass two args to `fatal'. X-Git-Tag: emacs-21.2~82 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=38044e1b07e81da268bcaeb20d7c2755727a71b6;p=emacs.git (xrealloc): Always pass two args to `fatal'. --- 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; }