mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-05 05:30:29 +00:00
Bug 800535: Switch var to unsigned in nsSimplePageSequenceFrame::PrePrintNextPage, to fix signed/unsigned-comparison build warning. r=bdahl
This commit is contained in:
parent
a0ca51613a
commit
f87b41ba5a
@ -661,7 +661,7 @@ nsSimplePageSequenceFrame::PrePrintNextPage(nsITimerCallback* aCallback, bool* a
|
||||
}
|
||||
}
|
||||
}
|
||||
int32_t doneCounter = 0;
|
||||
uint32_t doneCounter = 0;
|
||||
for (int32_t i = mCurrentCanvasList.Length() - 1; i >= 0 ; i--) {
|
||||
nsHTMLCanvasElement* canvas = mCurrentCanvasList[i];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user