Bug 285631. Fix build bustage

git-svn-id: svn://10.0.0.236/trunk@189878 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
roc+%cs.cmu.edu 2006-02-13 21:55:50 +00:00
parent a1e5737ae0
commit 3dc7ac8f2a

View File

@ -252,7 +252,7 @@ public:
PLHashNumber Hash() const {
// XXX I have no idea if this hashing function is good or not // XXX change this
PLHashNumber temp = PLHashNumber(NS_PTR_TO_INT32(mValue.get())) >> 2; // strip alignment bits
return (temp & 0xffff) | ((PRInt32)mVariable.get()); }
return (temp & 0xffff) | NS_PTR_TO_INT32(mVariable.get()); }
};