diff options
author | Jim Meyering <jim@meyering.net> | 2000-07-31 06:46:21 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-07-31 06:46:21 +0000 |
commit | 6fb996fcc575ecf524c7944fc0a137c1fddb5dda (patch) | |
tree | 0eccfeeebaecc3e11b2a7df6365da4463e308d59 | |
parent | 5a95ad0a732eca1de44d67b2bc04263b758a9965 (diff) | |
download | coreutils-6fb996fcc575ecf524c7944fc0a137c1fddb5dda.tar.xz |
[!HAVE_CONFIG_H]: Use `virtual memory exhausted', not `Memory exhausted'.
-rw-r--r-- | src/shred.c | 4 |
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; } |