(xrealloc): Always pass two args to `fatal'.

This commit is contained in:
Richard M. Stallman 2001-11-03 19:04:48 +00:00
parent 08fa58c940
commit 6d8f7d5dd1
2 changed files with 7 additions and 1 deletions

View 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

View 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;
}