Commit eff7762d authored by Alexandre Julliard's avatar Alexandre Julliard

libwine: Fix handling of precision argument in vsnprintfW.

parent 9bd68873
......@@ -406,6 +406,7 @@ int vsnprintfW(WCHAR *str, size_t len, const WCHAR *format, va_list valist)
sprintf(buffiter, "%d", fieldlen);
while (*buffiter)
*fmta++ = *buffiter++;
iter++;
}
else
while (isdigit(*iter))
......
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