Bug 791546: Removes nsCRT::strcmp(const PRUnichar* s) from nsCRT.h and replaces it occurrences with NS_strcmp; r=bsmedberg

This commit is contained in:
Shriram Kunchanapalli
2012-12-24 08:47:18 +05:30
parent 48f7625971
commit ff3af78fae
17 changed files with 30 additions and 54 deletions

View File

@@ -224,7 +224,7 @@ nsLocalFile::GetRelativeDescriptor(nsIFile *fromFile, nsACString& _retval)
if (_wcsicmp(thisNodes[nodeIndex], fromNodes[nodeIndex]))
break;
#else
if (nsCRT::strcmp(thisNodes[nodeIndex], fromNodes[nodeIndex]))
if (NS_strcmp(thisNodes[nodeIndex], fromNodes[nodeIndex]))
break;
#endif
}