X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libbb%2Fherror_msg_and_die.c;h=230fe645a0e237e264d6a97c49e13fbbaac58102;hb=d7171c114028815df4e92f9c26875f1d60c6af2a;hp=8c77378d718b02804fd8b751da4e37c3e104d25a;hpb=335b63d8d1876ce4e172ebcc9d64544785682244;p=oweals%2Fbusybox.git diff --git a/libbb/herror_msg_and_die.c b/libbb/herror_msg_and_die.c index 8c77378d7..230fe645a 100644 --- a/libbb/herror_msg_and_die.c +++ b/libbb/herror_msg_and_die.c @@ -9,12 +9,12 @@ #include "libbb.h" -void bb_herror_msg_and_die(const char *s, ...) +void FAST_FUNC bb_herror_msg_and_die(const char *s, ...) { va_list p; va_start(p, s); - bb_vherror_msg(s, p); + bb_verror_msg(s, p, hstrerror(h_errno)); va_end(p); xfunc_die(); }