msvcrt: Added 'll' modifier to printf functions.
This commit is contained in:
parent
f88ed20bc9
commit
120346da88
|
@ -831,7 +831,12 @@ static int pf_vsnprintf( pf_output *out, const WCHAR *format,
|
|||
/* deal with integer width modifier */
|
||||
while( *p )
|
||||
{
|
||||
if( *p == 'h' || *p == 'l' || *p == 'L' )
|
||||
if( *p == 'l' && *(p+1) == 'l' )
|
||||
{
|
||||
flags.IntegerDouble++;
|
||||
p += 2;
|
||||
}
|
||||
else if( *p == 'h' || *p == 'l' || *p == 'L' )
|
||||
{
|
||||
flags.IntegerLength = *p;
|
||||
p++;
|
||||
|
|
Loading…
Reference in New Issue