Commit ba7d543c authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

user32/tests: Use int for wait_move_event delay type.

parent 948f2031
......@@ -12523,8 +12523,9 @@ done:
static void wait_move_event(HWND hwnd, int x, int y)
{
MSG msg;
DWORD timeout = GetTickCount() + 500, delay;
DWORD timeout = GetTickCount() + 500;
BOOL ret;
int delay;
while ((delay = timeout - GetTickCount()) > 0)
{
......
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