aboutsummaryrefslogtreecommitdiff
path: root/runit
diff options
context:
space:
mode:
Diffstat (limited to 'runit')
-rw-r--r--runit/sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runit/sv.c b/runit/sv.c
index 1d0809be8..dc5dcceb3 100644
--- a/runit/sv.c
+++ b/runit/sv.c
@@ -224,7 +224,7 @@ static void out(const char *p, const char *m1)
224{ 224{
225 printf("%s%s%s: %s", p, *service, islog ? "/log" : "", m1); 225 printf("%s%s%s: %s", p, *service, islog ? "/log" : "", m1);
226 if (errno) { 226 if (errno) {
227 printf(": %s", strerror(errno)); 227 printf(": "STRERROR_FMT STRERROR_ERRNO);
228 } 228 }
229 bb_putchar('\n'); /* will also flush the output */ 229 bb_putchar('\n'); /* will also flush the output */
230} 230}