diff options
Diffstat (limited to 'libc/misc/error')
-rw-r--r-- | libc/misc/error/err.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/error/err.c b/libc/misc/error/err.c index 113c2d94f..49e4fd725 100644 --- a/libc/misc/error/err.c +++ b/libc/misc/error/err.c @@ -34,7 +34,7 @@ static void vwarn_work(const char *format, va_list args, int showerr) f = fmt + 11; /* At 11. */ if (showerr) { f -= 4; /* At 7. */ - __xpg_strerror_r(errno, buf, sizeof(buf)); + __xpg_strerror_r_internal(errno, buf, sizeof(buf)); } __STDIO_AUTO_THREADLOCK(stderr); |