summaryrefslogtreecommitdiff
path: root/src/shred.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-07-31 06:46:21 +0000
committerJim Meyering <jim@meyering.net>2000-07-31 06:46:21 +0000
commit6fb996fcc575ecf524c7944fc0a137c1fddb5dda (patch)
tree0eccfeeebaecc3e11b2a7df6365da4463e308d59 /src/shred.c
parent5a95ad0a732eca1de44d67b2bc04263b758a9965 (diff)
downloadcoreutils-6fb996fcc575ecf524c7944fc0a137c1fddb5dda.tar.xz
[!HAVE_CONFIG_H]: Use `virtual memory exhausted', not `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 51ae50755..a45e80c96 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;
}