From: Jim Meyering Date: Tue, 8 Aug 2000 07:03:41 +0000 (+0000) Subject: (quotearg_colon, xmalloc): "virtual memory exhausted" -> "memory exhausted" X-Git-Tag: FILEUTILS-4_0y~80 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=d681dd75249ef57baaeda5e463401f441d237131;p=thirdparty%2Fcoreutils.git (quotearg_colon, xmalloc): "virtual memory exhausted" -> "memory exhausted" --- diff --git a/src/shred.c b/src/shred.c index a45e80c964..42a36ed150 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, _("virtual memory exhausted")); + error (EXIT_FAILURE, 0, _("memory exhausted")); bufsize = newsize; } return buf; @@ -389,7 +389,7 @@ xmalloc (size_t n) { void *p = malloc (n); if (!p) - error (EXIT_FAILURE, 0, _("virtual memory exhausted")); + error (EXIT_FAILURE, 0, _("memory exhausted")); return p; }