added PRUint32 cast to unbreak the build

This commit is contained in:
rods 1998-06-10 20:34:38 +00:00
parent 1923664935
commit a7ffce9f67

View File

@ -244,7 +244,7 @@ PRUint32 nsDeviceContextUnix :: ConvertPixel(nscolor aColor)
}
if (mDepth == 24) {
newcolor = aColor & 0x00ffffff;
newcolor = (PRUint32)aColor & 0x00ffffff;
}
return (newcolor);