ICU-8992 warning cleanup

X-SVN-Rev: 31135
This commit is contained in:
Steven R. Loomis 2011-12-16 01:08:33 +00:00
parent b58f3b7641
commit 26baae9070

View file

@ -412,7 +412,7 @@ addFile(const char *filename, const char *name, const char *source, UBool source
fileMax += CHUNK_FILE_COUNT;
files = uprv_realloc(files, fileMax*sizeof(files[0])); /* note: never freed. */
if(files==NULL) {
fprintf(stderr, "pkgdata/gencmn: Could not allocate %u bytes for %d files\n", (fileMax*sizeof(files[0])), fileCount);
fprintf(stderr, "pkgdata/gencmn: Could not allocate %u bytes for %d files\n", (unsigned int)(fileMax*sizeof(files[0])), fileCount);
exit(U_MEMORY_ALLOCATION_ERROR);
}
}