diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-07 16:45:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-07 16:45:34 +0000 |
commit | b837918ee117012a5db016ea4f66196554d6f947 (patch) | |
tree | 1ded869acdace30988e0ac0f07fd4dbaf874eab2 /stdio-common | |
parent | 404ee5fc7966af3b464c55e84bc4a956557117fe (diff) | |
download | glibc-b837918ee117012a5db016ea4f66196554d6f947.tar.gz glibc-b837918ee117012a5db016ea4f66196554d6f947.tar.xz glibc-b837918ee117012a5db016ea4f66196554d6f947.zip |
Update.
* stdio-common/printf-parse.h: Likewise.
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 |