Commit f438056b authored by 's avatar Committed by Alexandre Julliard

Interpret %% correctly in printf format string.

parent 25abe7c5
......@@ -430,7 +430,7 @@ static int pf_vsnprintf( pf_output *out, const WCHAR *format, va_list valist )
/* output a single % character */
if( *p == '%' )
{
r = pf_output_stringW(out, p, 1);
r = pf_output_stringW(out, p++, 1);
if( r<0 )
return r;
continue;
......
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