changeset 141:93c043d9285a

GNU shell utilities
author Jim Meyering <jim@meyering.net>
date Mon, 15 Nov 1993 14:23:38 +0000
parents 153184fe3025
children 4435c9c71e78
files lib/xmalloc.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib/xmalloc.c
+++ b/lib/xmalloc.c
@@ -59,7 +59,7 @@
   p = malloc (n);
   if (p == 0)
     /* Must exit with 2 for `cmp'.  */
-    error (2, 0, "virtual memory exhausted");
+    error (2, 0, "memory exhausted");
   return p;
 }
 
@@ -83,6 +83,6 @@
   p = realloc (p, n);
   if (p == 0)
     /* Must exit with 2 for `cmp'.  */
-    error (2, 0, "virtual memory exhausted");
+    error (2, 0, "memory exhausted");
   return p;
 }