Skip to content

Commit

Permalink
Bug 1404147 Fix signed/unsigned comparison of uints r=jld
Browse files Browse the repository at this point in the history
MozReview-Commit-ID: 7z3JocWOrW5

--HG--
extra : rebase_source : f90aacbe737deff81da9aca0f6b64cad268074f4
  • Loading branch information
tomrittervg committed Sep 28, 2017
1 parent 3912879 commit 99edbfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipc/glue/WindowsMessageLoop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ DumpNeuteredMessage(HWND hwnd, UINT uMsg)
// classify messages
if (uMsg < WM_USER) {
int idx = 0;
while (mozilla::widget::gAllEvents[idx].mId != (long)uMsg &&
while (mozilla::widget::gAllEvents[idx].mId != uMsg &&
mozilla::widget::gAllEvents[idx].mStr != nullptr) {
idx++;
}
Expand Down

0 comments on commit 99edbfc

Please sign in to comment.