summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-08-08 07:11:30 +0000
committerJim Meyering <jim@meyering.net>2000-08-08 07:11:30 +0000
commit6fa66b84143d5fd74d7b3aed615777801d31a08d (patch)
tree9b5f93080486e34b25c4087650d21e24e2b70e6b /src
parent13587cf0ec42e3fcf9ec0600705cc41dadd6a847 (diff)
downloadcoreutils-6fa66b84143d5fd74d7b3aed615777801d31a08d.tar.xz
(main): Invoke xalloc_die instead of printing our own message.
Diffstat (limited to 'src')
-rw-r--r--src/install.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/install.c b/src/install.c
index 696b18906..31d934673 100644
--- a/src/install.c
+++ b/src/install.c
@@ -333,7 +333,7 @@ main (int argc, char **argv)
if (change == MODE_INVALID)
error (1, 0, _("invalid mode %s"), quote (symbolic_mode));
else if (change == MODE_MEMORY_EXHAUSTED)
- error (1, 0, _("virtual memory exhausted"));
+ xalloc_die ();
mode = mode_adjust (0, change);
}