Skip to content

Commit

Permalink
Bug 1449530 - fix bustage of a11cb2c5d1f9c CLOSED TREE
Browse files Browse the repository at this point in the history
  • Loading branch information
asurkov committed Apr 3, 2018
1 parent ea471d6 commit 1eb51e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accessible/atk/AccessibleWrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1544,7 +1544,7 @@ MaiAtkObject::FireStateChangeEvent(uint64_t aState, bool aEnabled)
state >>= 1;
}

MOZ_ASSERT(stateIndex >= 0 && stateIndex < gAtkStateMapLen,
MOZ_ASSERT(stateIndex >= 0 && stateIndex < static_cast<int32_t>(gAtkStateMapLen),
"No ATK state for internal state was found");
if (stateIndex < 0 || stateIndex >= static_cast<int32_t>(gAtkStateMapLen)) {
return;
Expand Down

0 comments on commit 1eb51e6

Please sign in to comment.