diff options
author | Jim Meyering <jim@meyering.net> | 2000-07-31 06:47:33 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-07-31 06:47:33 +0000 |
commit | 4e02f20bd36094dd64ff529f75dc7766f82ac5df (patch) | |
tree | 80c48095e26afee5d08d58cc2f5bcdfb2ce5ab69 | |
parent | 216cc777843bc0d3b28bad21cc29e9596a987ae1 (diff) | |
download | coreutils-4e02f20bd36094dd64ff529f75dc7766f82ac5df.tar.xz |
Use `virtual memory exhausted', not `Memory exhausted'.
-rw-r--r-- | lib/obstack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/obstack.c b/lib/obstack.c index 639a6b067..0322fb673 100644 --- a/lib/obstack.c +++ b/lib/obstack.c @@ -468,7 +468,7 @@ _obstack_memory_used (h) static void print_and_abort () { - fputs (_("memory exhausted"), stderr); + fputs (_("virtual memory exhausted"), stderr); fputc ('\n', stderr); exit (obstack_exit_failure); } |