Merge pull request #169 from zhadaolong/win-var-type

btstack_run_loop_windows: fix timeout_ms type
This commit is contained in:
Matthias Ringwald 2018-09-03 21:09:57 +02:00 committed by GitHub
commit 2ec948c399
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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();