mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
Fixed typo in message filter check.
This commit is contained in:
parent
a67e6486df
commit
9be457dd3b
@ -681,7 +681,7 @@ DECL_HANDLER(get_message)
|
||||
{
|
||||
/* check against the filters */
|
||||
if (req->get_win && msg->win != req->get_win) continue;
|
||||
if (req->msg >= req->get_first && req->msg <= req->get_last)
|
||||
if (msg->msg >= req->get_first && msg->msg <= req->get_last)
|
||||
{
|
||||
/* found one */
|
||||
req->type = msg->type;
|
||||
|
Loading…
Reference in New Issue
Block a user