diff --git a/dlls/msvcp60/locale.c b/dlls/msvcp60/locale.c index 2320886bd5f..326a51a3954 100644 --- a/dlls/msvcp60/locale.c +++ b/dlls/msvcp60/locale.c @@ -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++ = '*'; diff --git a/dlls/msvcp90/locale.c b/dlls/msvcp90/locale.c index b15f1b88cad..587aca65d6e 100644 --- a/dlls/msvcp90/locale.c +++ b/dlls/msvcp90/locale.c @@ -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++ = '*';