diff --git a/mozilla/nsprpub/lib/tests/string.c b/mozilla/nsprpub/lib/tests/string.c index 0e2c3a55491..ec839752604 100644 --- a/mozilla/nsprpub/lib/tests/string.c +++ b/mozilla/nsprpub/lib/tests/string.c @@ -3038,7 +3038,7 @@ PRBool test_031(void) s1 = string; while( (token = PL_strtok_r(s1, s2, &lasts)) != NULL) { - if( strcmp(token, tokens[i]) != 0 ) + if( PL_strcmp(token, tokens[i]) != 0 ) { printf("FAIL wrong token scanned\n"); return PR_FALSE;