]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(quotearg_colon, xmalloc): "virtual memory exhausted" -> "memory exhausted"
authorJim Meyering <jim@meyering.net>
Tue, 8 Aug 2000 07:03:41 +0000 (07:03 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 8 Aug 2000 07:03:41 +0000 (07:03 +0000)
src/shred.c

index a45e80c964f1c2ce75f6106248c4418261344cd5..42a36ed150ab090ba25647b824babe56c6c3bc0d 100644 (file)
@@ -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;
 }