mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
msvcp90: Fix FMTFLAG_showpoint handling in num_put_char__Ffmt.
This commit is contained in:
parent
869f8fd238
commit
2b2a3338ee
@ -5843,7 +5843,7 @@ static char* num_put_char__Ffmt(const num_put *this, char *fmt, char spec, int f
|
||||
*p++ = '%';
|
||||
if(fmtfl & FMTFLAG_showpos)
|
||||
*p++ = '+';
|
||||
if(fmtfl & FMTFLAG_showbase)
|
||||
if(fmtfl & FMTFLAG_showpoint)
|
||||
*p++ = '#';
|
||||
*p++ = '.';
|
||||
*p++ = '*';
|
||||
|
@ -7088,7 +7088,7 @@ char* __cdecl num_put_char__Ffmt(const num_put *this, char *fmt, char spec, int
|
||||
*p++ = '%';
|
||||
if(fmtfl & FMTFLAG_showpos)
|
||||
*p++ = '+';
|
||||
if(fmtfl & FMTFLAG_showbase)
|
||||
if(fmtfl & FMTFLAG_showpoint)
|
||||
*p++ = '#';
|
||||
*p++ = '.';
|
||||
*p++ = '*';
|
||||
|
Loading…
Reference in New Issue
Block a user