]> granicus.if.org Git - icu/commitdiff
ICU-9326 Fix Package declaration in header file
authorMichael Ow <mow@svn.icu-project.org>
Fri, 18 May 2012 06:56:36 +0000 (06:56 +0000)
committerMichael Ow <mow@svn.icu-project.org>
Fri, 18 May 2012 06:56:36 +0000 (06:56 +0000)
X-SVN-Rev: 31833

icu4c/source/tools/toolutil/pkg_icu.cpp
icu4c/source/tools/toolutil/pkg_icu.h

index f2a2d5ffe599d2eb3c7edda11708bee872ac24a5..87ed0914f13096bf29f81f7afd618f29c4c7e783 100644 (file)
@@ -160,7 +160,7 @@ writePackageDatFile(const char *outFilename, const char *outComment, const char
             return U_MEMORY_ALLOCATION_ERROR;
         }
 
-        addListPkg = readList(sourcePath, addList, TRUE);
+        addListPkg = readList(sourcePath, addList, TRUE, NULL);
         if(addListPkg != NULL) {
             pkg->addItems(*addListPkg);
         } else {
index 7b652cd8997b799927bc9bcd11b026be69edc054..8451f8d550fbe922e690bdd841ab0b73b446d43f 100644 (file)
@@ -17,6 +17,6 @@ writePackageDatFile(const char *outFilename, const char *outComment,
                     char outType);
 
 U_CAPI icu::Package * U_EXPORT2
-readList(const char *filesPath, const char *listname, UBool readContents, Package *listPkgIn = NULL);
+readList(const char *filesPath, const char *listname, UBool readContents, icu::Package *listPkgIn);
 
 #endif