summaryrefslogtreecommitdiff
path: root/src/shred.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-08-08 07:03:41 +0000
committerJim Meyering <jim@meyering.net>2000-08-08 07:03:41 +0000
commitd681dd75249ef57baaeda5e463401f441d237131 (patch)
tree3998b1a4b1cc2f5e81c76276cff5f7a56109e7b8 /src/shred.c
parentc64d3aaf18a5eeb66ea7bae13e8424bb30f711af (diff)
downloadcoreutils-d681dd75249ef57baaeda5e463401f441d237131.tar.xz
(quotearg_colon, xmalloc): "virtual memory exhausted" -> "memory exhausted"
Diffstat (limited to 'src/shred.c')
-rw-r--r--src/shred.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shred.c b/src/shred.c
index a45e80c96..42a36ed15 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;
}