summaryrefslogtreecommitdiff
path: root/src/mkfifo.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-08-08 07:12:24 +0000
committerJim Meyering <jim@meyering.net>2000-08-08 07:12:24 +0000
commitb99ee65d9feb6e7020b5afc6b670d77c83c6a5b4 (patch)
tree395ab4a53adea7e60b426f643a26b27bbca2b9bd /src/mkfifo.c
parentb2557211cb23035c7aafc0311c15b05b214a8352 (diff)
downloadcoreutils-b99ee65d9feb6e7020b5afc6b670d77c83c6a5b4.tar.xz
(main): Invoke xalloc_die instead of printing our own message.
Diffstat (limited to 'src/mkfifo.c')
-rw-r--r--src/mkfifo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mkfifo.c b/src/mkfifo.c
index 886ce7bbd..ec933ee8a 100644
--- a/src/mkfifo.c
+++ b/src/mkfifo.c
@@ -122,7 +122,7 @@ main (int argc, char **argv)
if (change == MODE_INVALID)
error (1, 0, _("invalid mode"));
else if (change == MODE_MEMORY_EXHAUSTED)
- error (1, 0, _("virtual memory exhausted"));
+ xalloc_die ();
newmode = mode_adjust (newmode, change);
}