diff options
author | Rob Landley <rob@landley.net> | 2016-01-05 22:26:58 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-01-05 22:26:58 -0600 |
commit | d3a435e53c94ec25b4ae5fa2614f49ef8884e08a (patch) | |
tree | 12e38a4739bd1832040b7d7e3efd2e054351fbf0 /lib/xwrap.c | |
parent | 8dfbf2efc89154fd74b34b5f4d8bf774dba63abf (diff) | |
download | toybox-d3a435e53c94ec25b4ae5fa2614f49ef8884e08a.tar.gz |
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.
Diffstat (limited to 'lib/xwrap.c')
-rw-r--r-- | lib/xwrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xwrap.c b/lib/xwrap.c index 6d0c5113..09f9197d 100644 --- a/lib/xwrap.c +++ b/lib/xwrap.c @@ -214,7 +214,7 @@ pid_t xpopen_both(char **argv, int *pipes) // setting high bit of argv[0][0] to let new process know **toys.argv |= 0x80; execv(s, toys.argv); - perror_msg(s); + perror_msg_raw(s); _exit(127); } @@ -291,7 +291,7 @@ void xunlink(char *path) int xcreate(char *path, int flags, int mode) { int fd = open(path, flags^O_CLOEXEC, mode); - if (fd == -1) perror_exit("%s", path); + if (fd == -1) perror_exit_raw(path); return fd; } |