diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2002-07-07 20:13:41 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2002-07-07 20:13:41 +0000 |
commit | b815b84a5942f591e8a79c731100712558fa41c6 (patch) | |
tree | ff518c2c84178cdbf35699ca463577bf6e9dee19 /libc/stdio/printf.c | |
parent | c1383d79d31e9607a938215462f025bad3f14060 (diff) | |
download | uClibc-alpine-b815b84a5942f591e8a79c731100712558fa41c6.tar.bz2 uClibc-alpine-b815b84a5942f591e8a79c731100712558fa41c6.tar.xz |
Attempt to clean up the strerror_r situation.
Diffstat (limited to 'libc/stdio/printf.c')
-rw-r--r-- | libc/stdio/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/printf.c b/libc/stdio/printf.c index fc6dd87bd..de50ed4e5 100644 --- a/libc/stdio/printf.c +++ b/libc/stdio/printf.c @@ -1220,7 +1220,7 @@ int _do_one_spec(FILE * __restrict stream, register ppfs_t *ppfs, int *count) } #ifdef __STDIO_PRINTF_M_SUPPORT } else if (ppfs->conv_num == CONV_m) { - s = _stdio_strerror_r(errno, buf, sizeof(buf)); + s = _glibc_strerror_r(errno, buf, sizeof(buf)); goto SET_STRING_LEN; #endif } else { |