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:
Rémi Bernon 2021-05-20 16:36:55 +02:00 committed by Alexandre Julliard
parent 948f20312b
commit ba7d543c5c
1 changed files with 2 additions and 1 deletions

View File

@ -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)
{