ICU-4707 Fix some compiler warnings.

X-SVN-Rev: 19446
This commit is contained in:
George Rhoten 2006-03-26 00:43:34 +00:00
parent 401f909a49
commit 73da58a35a

View File

@ -86,7 +86,7 @@ checkIDSuffix(const char *itemName, const char *id, int32_t idLength, const char
targetLength=treeLength+idLength+suffixLength;
if(targetLength>=(int32_t)sizeof(target)) {
fprintf(stderr, "icupkg/checkIDSuffix(%s) alias target item name length %ld too long\n",
itemName, targetLength);
itemName, (long)targetLength);
*pErrorCode=U_BUFFER_OVERFLOW_ERROR;
return;
}