msvcp90: Fix FMTFLAG_showpoint handling in num_put_char__Ffmt.

oldstable
Piotr Caban 2014-09-12 11:28:39 +02:00 committed by Alexandre Julliard
parent 869f8fd238
commit 2b2a3338ee
2 changed files with 2 additions and 2 deletions

View File

@ -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++ = '*';

View File

@ -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++ = '*';