aboutsummaryrefslogtreecommitdiff
path: root/coreutils/mkfifo.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/mkfifo.c')
-rw-r--r--coreutils/mkfifo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/mkfifo.c b/coreutils/mkfifo.c
index 030c9d22f..e66f81778 100644
--- a/coreutils/mkfifo.c
+++ b/coreutils/mkfifo.c
@@ -28,7 +28,7 @@ int mkfifo_main(int argc, char **argv)
28 28
29 do { 29 do {
30 if (mkfifo(*argv, mode) < 0) { 30 if (mkfifo(*argv, mode) < 0) {
31 bb_perror_msg("%s", *argv); /* Avoid multibyte problems. */ 31 bb_simple_perror_msg(*argv); /* Avoid multibyte problems. */
32 retval = EXIT_FAILURE; 32 retval = EXIT_FAILURE;
33 } 33 }
34 } while (*++argv); 34 } while (*++argv);