(xrealloc): Always pass two args to `fatal'.
authorRichard M. Stallman <rms@gnu.org>
Sat, 3 Nov 2001 19:04:48 +0000 (19:04 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 3 Nov 2001 19:04:48 +0000 (19:04 +0000)
lib-src/ChangeLog
lib-src/cvtmail.c

index f74b23a..04ffd8a 100644 (file)
@@ -1,3 +1,9 @@
+2001-11-03  Richard M. Stallman  <rms@gnu.org>
+
+       * cvtmail.c (xrealloc): Always pass two args to `fatal'.
+
+       * movemail.c (popmail): Always pass two args to `error'.
+
 2001-10-24  Ken Raeburn  <raeburn@gnu.org>
 
        * Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include
index 20ef341..85c5512 100644 (file)
@@ -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;
 }