ICU-96 was comparing uint32_t to NULL - not anymore (linux build fail)

X-SVN-Rev: 4913
This commit is contained in:
Vladimir Weinstein 2001-06-07 21:50:15 +00:00
parent c6da6bb4c2
commit c568f25e06

View File

@ -59,7 +59,7 @@ UBool uhash_compareTokens(const void *key1, const void *key2) {
if (p1 == p2) {
return TRUE;
}
if (p1 == NULL || p2 == NULL) {
if (p1 == 0 || p2 == 0) {
return FALSE;
}
if(s1L != s2L) {