fix "mcode" check in cliprdr_thread_func()

Priority of the '!=' is higher than '=' operator
This commit is contained in:
Maks Naumov 2014-03-05 15:24:42 +02:00
parent 1d67de61c9
commit 012a729878
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ static void *cliprdr_thread_func(void *arg)
return NULL;
}
while ((mcode = GetMessage(&msg, 0, 0, 0) != 0))
while ((mcode = GetMessage(&msg, 0, 0, 0)) != 0)
{
if (mcode == -1)
{