Commit 7706560d authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Remove unneeded NULL cast.

parent ba0b5a8c
......@@ -195,7 +195,7 @@ static DWORD WINAPI MessageLoop(LPVOID lpParameter)
This->ThreadResult = TRUE;
SetEvent(This->hEvent);
while ((fGotMessage = GetMessageA(&msg, (HWND) NULL, 0, 0)) != 0 && fGotMessage != -1)
while ((fGotMessage = GetMessageA(&msg, NULL, 0, 0)) != 0 && fGotMessage != -1)
{
TranslateMessage(&msg);
DispatchMessageA(&msg);
......
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