Add missing parentheses to complete cast and fix bustage.

This commit is contained in:
reed@reedloden.com 2008-02-13 03:45:22 -08:00
parent ae7824cd84
commit c665e48609

View File

@ -105,7 +105,7 @@ public:
if (!aKey)
return 0;
return PR_ROTATE_LEFT32(static_cast<PRUint32>aKey->mNamespaceID, 4) ^
return PR_ROTATE_LEFT32(static_cast<PRUint32>(aKey->mNamespaceID), 4) ^
NS_PTR_TO_INT32(aKey->mLocalName);
}
enum { ALLOW_MEMMOVE = PR_TRUE };