From: Yoshito Umaoka Date: Wed, 26 Feb 2014 00:49:35 +0000 (+0000) Subject: ICU-10670 Fixed a compilation errror on VC in the previous commit. X-Git-Tag: milestone-59-0-1~2139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80c576c0b717d9bf366475d3559c8909a2255424;p=icu ICU-10670 Fixed a compilation errror on VC in the previous commit. X-SVN-Rev: 35235 --- diff --git a/icu4c/source/test/cintltst/cbiditst.c b/icu4c/source/test/cintltst/cbiditst.c index 692bbcb8954..b52715895c0 100644 --- a/icu4c/source/test/cintltst/cbiditst.c +++ b/icu4c/source/test/cintltst/cbiditst.c @@ -3550,8 +3550,8 @@ doArabicShapingTestForNewCharacters(void) { { 0x06CC, 0xFBFC, 0xFBFD, 0xFBFE, 0xFBFF, }, /* FARSI YEH */ { 0x06D2, 0xFBAE, 0xFBAF, 0, 0, }, /* YEH BARREE */ { 0x06D3, 0xFBB0, 0xFBB1, 0, 0, }}; /* YEH BARREE WITH HAMZA ABOVE */ - - for (int i = 0; i < LENGTHOF(letterForms); ++i) { + int i; + for (i = 0; i < LENGTHOF(letterForms); ++i) { _testPresentationForms(letterForms[i]); } }