From 8a51a0ecb5f7ca5b120d8368ae9f8d286ddb817c Mon Sep 17 00:00:00 2001 From: Michael Ow Date: Mon, 11 Mar 2013 16:55:23 +0000 Subject: [PATCH] ICU-9996 Exclude OS390 from isspace call X-SVN-Rev: 33410 --- icu4c/source/tools/pkgdata/pkgdata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/tools/pkgdata/pkgdata.cpp b/icu4c/source/tools/pkgdata/pkgdata.cpp index 1a4f199fce4..f33a639fb16 100644 --- a/icu4c/source/tools/pkgdata/pkgdata.cpp +++ b/icu4c/source/tools/pkgdata/pkgdata.cpp @@ -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++; } -- 2.40.0