From c4a8fd45685d03f7d4234820c94b3077b0d48962 Mon Sep 17 00:00:00 2001 From: zhadaolong Date: Mon, 3 Sep 2018 11:15:37 +0800 Subject: [PATCH] run_loop_windows timeout_ms type --- platform/windows/btstack_run_loop_windows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/windows/btstack_run_loop_windows.c b/platform/windows/btstack_run_loop_windows.c index 10a3f9164..f1103146d 100644 --- a/platform/windows/btstack_run_loop_windows.c +++ b/platform/windows/btstack_run_loop_windows.c @@ -167,7 +167,7 @@ static void btstack_run_loop_windows_execute(void) { } // get next timeout - uint32_t timeout_ms = INFINITE; + int32_t timeout_ms = INFINITE; if (timers) { ts = (btstack_timer_source_t *) timers; uint32_t now_ms = btstack_run_loop_windows_get_time_ms();