From: Jim Meyering Date: Tue, 8 Aug 2000 07:11:30 +0000 (+0000) Subject: (main): Invoke xalloc_die instead of printing our own message. X-Git-Tag: FILEUTILS-4_0y~74 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=6fa66b84143d5fd74d7b3aed615777801d31a08d;p=thirdparty%2Fcoreutils.git (main): Invoke xalloc_die instead of printing our own message. --- diff --git a/src/install.c b/src/install.c index 696b189067..31d9346738 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); }