summaryrefslogtreecommitdiff
path: root/libbb/herror_msg_and_die.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/herror_msg_and_die.c')
-rw-r--r--libbb/herror_msg_and_die.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/herror_msg_and_die.c b/libbb/herror_msg_and_die.c
index 8c77378d7..894c80f38 100644
--- a/libbb/herror_msg_and_die.c
+++ b/libbb/herror_msg_and_die.c
@@ -14,7 +14,7 @@ void bb_herror_msg_and_die(const char *s, ...)
14 va_list p; 14 va_list p;
15 15
16 va_start(p, s); 16 va_start(p, s);
17 bb_vherror_msg(s, p); 17 bb_verror_msg(s, p, hstrerror(h_errno));
18 va_end(p); 18 va_end(p);
19 xfunc_die(); 19 xfunc_die();
20} 20}