diff options
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/printf-parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/printf-parse.h b/stdio-common/printf-parse.h index c79c67d058..e9772ef666 100644 --- a/stdio-common/printf-parse.h +++ b/stdio-common/printf-parse.h @@ -105,7 +105,7 @@ find_spec (const UCHAR_T *format, mbstate_t *ps) int len; /* Remove any hints of a wrong encoding. */ - ps->count = 0; + ps->__count = 0; if (! isascii (*format) && (len = mbrlen (format, MB_CUR_MAX, ps)) > 0) format += len; else |