From: Jim Meyering Date: Mon, 31 Jul 2000 06:46:21 +0000 (+0000) Subject: [!HAVE_CONFIG_H]: Use `virtual memory exhausted', not `Memory exhausted'. X-Git-Tag: TEXTUTILS-2_0g~47 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=6fb996fcc575ecf524c7944fc0a137c1fddb5dda;p=thirdparty%2Fcoreutils.git [!HAVE_CONFIG_H]: Use `virtual memory exhausted', not `Memory exhausted'. --- diff --git a/src/shred.c b/src/shred.c index 51ae50755e..a45e80c964 100644 --- a/src/shred.c +++ b/src/shred.c @@ -378,7 +378,7 @@ quotearg_colon (char const *arg) { buf = realloc (buf, newsize); if (!buf) - error (EXIT_FAILURE, 0, _("Memory exhausted")); + error (EXIT_FAILURE, 0, _("virtual memory exhausted")); bufsize = newsize; } return buf; @@ -389,7 +389,7 @@ xmalloc (size_t n) { void *p = malloc (n); if (!p) - error (EXIT_FAILURE, 0, _("Memory exhausted")); + error (EXIT_FAILURE, 0, _("virtual memory exhausted")); return p; }