summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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;
}