Skip to content
Snippets Groups Projects
Commit ba7d543c authored by Rémi Bernon's avatar Rémi Bernon :speech_balloon: Committed by Alexandre Julliard
Browse files

user32/tests: Use int for wait_move_event delay type.

parent 948f2031
No related branches found
No related tags found
No related merge requests found
...@@ -12523,8 +12523,9 @@ done: ...@@ -12523,8 +12523,9 @@ done:
static void wait_move_event(HWND hwnd, int x, int y) static void wait_move_event(HWND hwnd, int x, int y)
{ {
MSG msg; MSG msg;
DWORD timeout = GetTickCount() + 500, delay; DWORD timeout = GetTickCount() + 500;
BOOL ret; BOOL ret;
int delay;
   
while ((delay = timeout - GetTickCount()) > 0) while ((delay = timeout - GetTickCount()) > 0)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment