aboutsummaryrefslogtreecommitdiffstats
path: root/executor/common_windows.h
diff options
context:
space:
mode:
Diffstat (limited to 'executor/common_windows.h')
-rw-r--r--executor/common_windows.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/executor/common_windows.h b/executor/common_windows.h
index 0edc473d7..d52092017 100644
--- a/executor/common_windows.h
+++ b/executor/common_windows.h
@@ -33,14 +33,14 @@ static void install_segv_handler()
#endif
#if defined(SYZ_EXECUTOR) || (defined(SYZ_REPEAT) && defined(SYZ_WAIT_REPEAT))
-static uint64_t current_time_ms()
+static uint64 current_time_ms()
{
return GetTickCount64();
}
#endif
#if defined(SYZ_EXECUTOR)
-static void sleep_ms(uint64_t ms)
+static void sleep_ms(uint64 ms)
{
Sleep(ms);
}