]> git.eshelyaron.com Git - emacs.git/commitdiff
(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 f74b23ac14e012111164126712953f262f6b2ee6..04ffd8a2d7d6f57bc1a5bad01a686af594878d7d 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 20ef3412439d0525cd0cef0de07bca80b6729a11..85c5512abfc08c49c76af1b075a8777ab9948350 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;
 }