mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Added a missing increment operator.
svn path=/trunk/; revision=3803
This commit is contained in:
parent
99b937362d
commit
ac08a1048a
1 changed files with 1 additions and 1 deletions
|
@ -809,7 +809,7 @@ int __vfwprintf(FILE *f, const wchar_t *fmt, va_list args)
|
||||||
{
|
{
|
||||||
if (putwc(L' ', f) == WEOF)
|
if (putwc(L' ', f) == WEOF)
|
||||||
return -1;
|
return -1;
|
||||||
done;
|
done++;
|
||||||
}
|
}
|
||||||
if (qualifier == L'l' || qualifier == L'w')
|
if (qualifier == L'l' || qualifier == L'w')
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue