diff options
Diffstat (limited to 'libbb/error_msg.c')
-rw-r--r-- | libbb/error_msg.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libbb/error_msg.c b/libbb/error_msg.c index a8ed4bf..b2141f3 100644 --- a/libbb/error_msg.c +++ b/libbb/error_msg.c @@ -18,7 +18,6 @@ void bb_error_msg(const char *s, ...) va_list p; va_start(p, s); - bb_verror_msg(s, p); + bb_verror_msg(s, p, NULL); va_end(p); - putc('\n', stderr); } |