user32/tests: Use int for wait_move_event delay type.
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
948f20312b
commit
ba7d543c5c
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue