Commit 24172215 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

usp10: Don't increment variable both in the loop header and body (clang).

parent ecbb4fa3
...@@ -1696,7 +1696,7 @@ static void ComposeConsonants(HDC hdc, WCHAR *pwOutChars, INT *pcChars, const Co ...@@ -1696,7 +1696,7 @@ static void ComposeConsonants(HDC hdc, WCHAR *pwOutChars, INT *pcChars, const Co
int offset = 0; int offset = 0;
int cWalk; int cWalk;
for (cWalk = 0; cWalk < *pcChars; cWalk++) for (cWalk = 0; cWalk < *pcChars; cWalk += 2)
{ {
for (i = 0; consonants[i].output!= 0x0; i++) for (i = 0; consonants[i].output!= 0x0; i++)
{ {
...@@ -1721,7 +1721,6 @@ static void ComposeConsonants(HDC hdc, WCHAR *pwOutChars, INT *pcChars, const Co ...@@ -1721,7 +1721,6 @@ static void ComposeConsonants(HDC hdc, WCHAR *pwOutChars, INT *pcChars, const Co
break; break;
} }
} }
cWalk++;
} }
} }
......
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