diff options
Diffstat (limited to 'libbb/herror_msg.c')
-rw-r--r-- | libbb/herror_msg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/herror_msg.c b/libbb/herror_msg.c index 1081a56b1..4fe921b29 100644 --- a/libbb/herror_msg.c +++ b/libbb/herror_msg.c | |||
@@ -24,12 +24,12 @@ | |||
24 | 24 | ||
25 | #include "libbb.h" | 25 | #include "libbb.h" |
26 | 26 | ||
27 | extern void herror_msg(const char *s, ...) | 27 | extern void bb_herror_msg(const char *s, ...) |
28 | { | 28 | { |
29 | va_list p; | 29 | va_list p; |
30 | 30 | ||
31 | va_start(p, s); | 31 | va_start(p, s); |
32 | vherror_msg(s, p); | 32 | bb_vherror_msg(s, p); |
33 | va_end(p); | 33 | va_end(p); |
34 | } | 34 | } |
35 | 35 | ||