mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Attempt to fix bustage from b375e530a90b by adding parens to hopefully appease gcc.
This commit is contained in:
parent
3899a2be6b
commit
b381fdfc4a
@ -1470,7 +1470,7 @@ nsRect nsRegion::GetLargestRectangle () const {
|
||||
PRInt32 matrixSize = matrixHeight * matrixWidth;
|
||||
nsTArray<PRInt64> areas(matrixSize);
|
||||
areas.SetLength(matrixSize);
|
||||
memset(areas.Elements(), 0, matrixSize * sizeof PRInt64);
|
||||
memset(areas.Elements(), 0, matrixSize * sizeof(PRInt64));
|
||||
|
||||
iter.Reset();
|
||||
while ((currentRect = iter.Next())) {
|
||||
|
Loading…
Reference in New Issue
Block a user