mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Fixed a test condition in IntWaitMessage.
svn path=/trunk/; revision=16578
This commit is contained in:
parent
dfaed2eb99
commit
bde6eea1e8
1 changed files with 1 additions and 1 deletions
|
@ -887,7 +887,7 @@ IntWaitMessage(HWND Wnd,
|
|||
/* Nothing found. Wait for new messages. */
|
||||
Status = MsqWaitForNewMessages(ThreadQueue, Wnd, MsgFilterMin, MsgFilterMax);
|
||||
}
|
||||
while ((STATUS_WAIT_0 <= Status && Status <= STATUS_WAIT_63) || STATUS_TIMEOUT == Status);
|
||||
while ((STATUS_WAIT_0 >= Status && Status <= STATUS_WAIT_63) || STATUS_TIMEOUT == Status);
|
||||
|
||||
SetLastNtError(Status);
|
||||
|
||||
|
|
Loading…
Reference in a new issue