[!HAVE_CONFIG_H]: Use `virtual memory exhausted', not `Memory exhausted'.
authorJim Meyering <jim@meyering.net>
Mon, 31 Jul 2000 06:46:21 +0000 (06:46 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 31 Jul 2000 06:46:21 +0000 (06:46 +0000)
src/shred.c

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