From d3a435e53c94ec25b4ae5fa2614f49ef8884e08a Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 5 Jan 2016 22:26:58 -0600 Subject: Add error_msg_raw() and friends, replace error_msg("%s", s) uses, enable format checking, and fix up format checking complaints. Added out(type, value) function to stat to avoid a zillion printf typecasts. --- toys/posix/mkfifo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/posix/mkfifo.c') diff --git a/toys/posix/mkfifo.c b/toys/posix/mkfifo.c index 9fc3829e..942dfdc5 100644 --- a/toys/posix/mkfifo.c +++ b/toys/posix/mkfifo.c @@ -46,5 +46,5 @@ void mkfifo_main(void) perror_exit("-Z '%s' failed", TT.Z); for (s = toys.optargs; *s; s++) - if (mknod(*s, S_IFIFO | TT.mode, 0) < 0) perror_msg("%s", *s); + if (mknod(*s, S_IFIFO | TT.mode, 0) < 0) perror_msg_raw(*s); } -- cgit v1.2.3