Commit ee058ed0 authored by Jesse Allen's avatar Jesse Allen Committed by Alexandre Julliard

msvcrt: Do not treat %ll as an IntegerDouble in printf.

parent 6c70942a
......@@ -489,10 +489,7 @@ static int pf_vsnprintf( pf_output *out, const WCHAR *format, va_list valist )
{
if( *p == 'h' || *p == 'l' || *p == 'L' )
{
if( flags.IntegerLength == *p ) /* FIXME: this is wrong */
flags.IntegerDouble++;
else
flags.IntegerLength = *p;
flags.IntegerLength = *p;
p++;
}
else if( *p == 'I' )
......
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