mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +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 */
|
||||
qualifier = 0;
|
||||
// %Z can be just stand alone or as size_t qualifier
|
||||
if ( *fmt == 'Z' ) {
|
||||
qualifier = *fmt;
|
||||
|
|
|
@ -558,6 +558,7 @@ int __vfwprintf(FILE *f, const wchar_t *fmt, va_list args)
|
|||
}
|
||||
|
||||
/* get the conversion qualifier */
|
||||
qualifier=0;
|
||||
// %Z can be just stand alone or as size_t qualifier
|
||||
if ( *fmt == 'Z' ) {
|
||||
qualifier = *fmt;
|
||||
|
|
Loading…
Reference in a new issue