mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 02:25:34 +00:00
Bug 1322464 - Fix an invalid assignment in assertion expression. r=froydnj
MozReview-Commit-ID: EFCSnfxnreT --HG-- extra : rebase_source : 92636764a12eda78315a9a62d81709913078fd41
This commit is contained in:
parent
3d37a30fb1
commit
6d092ba5ea
@ -268,7 +268,7 @@ public:
|
||||
// A race condition similar to the case described above could
|
||||
// occur, so waitResult could be WAIT_TIMEOUT, but that doesn't
|
||||
// matter for the actions that need to be taken.
|
||||
MOZ_RELEASE_ASSERT(waitResult = WAIT_OBJECT_0 + 1 ||
|
||||
MOZ_RELEASE_ASSERT(waitResult == WAIT_OBJECT_0 + 1 ||
|
||||
waitResult == WAIT_TIMEOUT);
|
||||
|
||||
BOOL success = ResetEvent(wakeAllEvent_);
|
||||
|
Loading…
Reference in New Issue
Block a user