projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a95ad0
)
[!HAVE_CONFIG_H]: Use `virtual memory exhausted', not `Memory exhausted'.
author
Jim Meyering
<jim@meyering.net>
Mon, 31 Jul 2000 06:46:21 +0000
(06:46 +0000)
committer
Jim Meyering
<jim@meyering.net>
Mon, 31 Jul 2000 06:46:21 +0000
(06:46 +0000)
src/shred.c
patch
|
blob
|
history
diff --git
a/src/shred.c
b/src/shred.c
index 51ae50755e89211ea8c7c34c925b571ea26ad5f8..a45e80c964f1c2ce75f6106248c4418261344cd5 100644
(file)
--- 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, _("
M
emory exhausted"));
+ error (EXIT_FAILURE, 0, _("
virtual m
emory exhausted"));
bufsize = newsize;
}
return buf;
@@
-389,7
+389,7
@@
xmalloc (size_t n)
{
void *p = malloc (n);
if (!p)
- error (EXIT_FAILURE, 0, _("
M
emory exhausted"));
+ error (EXIT_FAILURE, 0, _("
virtual m
emory exhausted"));
return p;
}