diff options
Diffstat (limited to 'coreutils/mkfifo.c')
-rw-r--r-- | coreutils/mkfifo.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/coreutils/mkfifo.c b/coreutils/mkfifo.c index ef4a5256f..728e1ec2f 100644 --- a/coreutils/mkfifo.c +++ b/coreutils/mkfifo.c | |||
@@ -53,9 +53,7 @@ extern int mkfifo_main(int argc, char **argv) | |||
53 | } | 53 | } |
54 | if (argc < 1 || *argv[0] == '-') | 54 | if (argc < 1 || *argv[0] == '-') |
55 | usage(mkfifo_usage); | 55 | usage(mkfifo_usage); |
56 | if (mkfifo(*argv, mode) < 0) { | 56 | if (mkfifo(*argv, mode) < 0) |
57 | perror("mkfifo"); | 57 | perror_msg_and_die("mkfifo"); |
58 | return EXIT_FAILURE; | ||
59 | } | ||
60 | return EXIT_SUCCESS; | 58 | return EXIT_SUCCESS; |
61 | } | 59 | } |