Fixed typo in message filter check.

This commit is contained in:
Alexandre Julliard 2001-05-18 23:22:12 +00:00
parent a67e6486df
commit 9be457dd3b

View file

@ -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;