mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Reseting the conversion qualifier for each new value from the format string.
svn path=/trunk/; revision=3063
This commit is contained in:
parent
e2822009d7
commit
e019c02170
2 changed files with 2 additions and 0 deletions
|
@ -559,6 +559,7 @@ int __vfprintf(FILE *f, const char *fmt, va_list args)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* get the conversion qualifier */
|
/* get the conversion qualifier */
|
||||||
|
qualifier = 0;
|
||||||
// %Z can be just stand alone or as size_t qualifier
|
// %Z can be just stand alone or as size_t qualifier
|
||||||
if ( *fmt == 'Z' ) {
|
if ( *fmt == 'Z' ) {
|
||||||
qualifier = *fmt;
|
qualifier = *fmt;
|
||||||
|
|
|
@ -558,6 +558,7 @@ int __vfwprintf(FILE *f, const wchar_t *fmt, va_list args)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* get the conversion qualifier */
|
/* get the conversion qualifier */
|
||||||
|
qualifier=0;
|
||||||
// %Z can be just stand alone or as size_t qualifier
|
// %Z can be just stand alone or as size_t qualifier
|
||||||
if ( *fmt == 'Z' ) {
|
if ( *fmt == 'Z' ) {
|
||||||
qualifier = *fmt;
|
qualifier = *fmt;
|
||||||
|
|
Loading…
Reference in a new issue