Commit 9be457dd authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed typo in message filter check.

parent a67e6486
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment