]> granicus.if.org Git - icu/commitdiff
ICU-9996 Exclude OS390 from isspace call
authorMichael Ow <mow@svn.icu-project.org>
Mon, 11 Mar 2013 16:55:23 +0000 (16:55 +0000)
committerMichael Ow <mow@svn.icu-project.org>
Mon, 11 Mar 2013 16:55:23 +0000 (16:55 +0000)
X-SVN-Rev: 33410

icu4c/source/tools/pkgdata/pkgdata.cpp

index 1a4f199fce4a3f52f2e5d2704bb7f7c1c8371915..f33a639fb16ddaf2d45d17d80a137c3f564989e3 100644 (file)
@@ -1865,7 +1865,7 @@ static void loadLists(UPKGOptions *o, UErrorCode *status)
             /* remove spaces at the beginning */
             linePtr = line;
             /* On z/OS, disable call to isspace (#9996).  Investigate using uprv_isspace instead (#9999) */
-#if U_PLATFORM == U_PF_OS390
+#if U_PLATFORM != U_PF_OS390
             while(isspace(*linePtr)) {
                 linePtr++;
             }