aboutsummaryrefslogtreecommitdiff
path: root/mkfifo.c
diff options
context:
space:
mode:
Diffstat (limited to 'mkfifo.c')
-rw-r--r--mkfifo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkfifo.c b/mkfifo.c
index 5e1bc1a78..ef4a5256f 100644
--- a/mkfifo.c
+++ b/mkfifo.c
@@ -55,7 +55,7 @@ extern int mkfifo_main(int argc, char **argv)
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("mkfifo");
58 exit(255); 58 return EXIT_FAILURE;
59 } 59 }
60 return(TRUE); 60 return EXIT_SUCCESS;
61} 61}