ICU-9326 Fix Package declaration in header file

X-SVN-Rev: 31833
This commit is contained in:
Michael Ow 2012-05-18 06:56:36 +00:00
parent 7803f080ca
commit 08b403c001
2 changed files with 2 additions and 2 deletions

View 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 {

View 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