use %m printf specifier where appropriate

function                                             old     new   delta
out                                                   85      75     -10
udhcpd_main                                         1472    1461     -11
open_stdio_to_tty                                     98      85     -13
init_exec                                            245     232     -13
udhcpc_main                                         2763    2749     -14
do_cmd                                              4771    4755     -16
status_line_bold_errno                                32      14     -18
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 0/7 up/down: 0/-95)             Total: -95 bytes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2017-09-29 18:17:25 +02:00
parent f625836e60
commit 6f97b30a90
9 changed files with 25 additions and 19 deletions

View file

@ -224,7 +224,7 @@ static void out(const char *p, const char *m1)
{
printf("%s%s%s: %s", p, *service, islog ? "/log" : "", m1);
if (errno) {
printf(": %s", strerror(errno));
printf(": "STRERROR_FMT STRERROR_ERRNO);
}
bb_putchar('\n'); /* will also flush the output */
}