]> granicus.if.org Git - icu/commitdiff
ICU-10670 Fixed a compilation errror on VC in the previous commit.
authorYoshito Umaoka <y.umaoka@gmail.com>
Wed, 26 Feb 2014 00:49:35 +0000 (00:49 +0000)
committerYoshito Umaoka <y.umaoka@gmail.com>
Wed, 26 Feb 2014 00:49:35 +0000 (00:49 +0000)
X-SVN-Rev: 35235

icu4c/source/test/cintltst/cbiditst.c

index 692bbcb8954fa659b2f0082b34e449104cbdc84b..b52715895c0dc40d0817107e4034a0dd0c7976e9 100644 (file)
@@ -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]);
   }
 }