diff options
Diffstat (limited to 'misc/err.c')
-rw-r--r-- | misc/err.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/err.c b/misc/err.c index 24b615b750..4c372032fa 100644 --- a/misc/err.c +++ b/misc/err.c @@ -77,7 +77,7 @@ convert_and_print (const char *format, __gnuc_va_list ap) memset (&st, '\0', sizeof (st)); tmp =format; } - while ((res = mbsrtowcs (wformat, &tmp, len, &st)) == len); + while ((res = __mbsrtowcs (wformat, &tmp, len, &st)) == len); if (res == (size_t) -1) /* The string cannot be converted. */ |