Commit 120346da authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Added 'll' modifier to printf functions.

parent f88ed20b
......@@ -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++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment