summaryrefslogtreecommitdiffstatshomepage
path: root/windows
diff options
context:
space:
mode:
Diffstat (limited to 'windows')
-rw-r--r--windows/msvc/gettimeofday.c2
-rw-r--r--windows/sleep.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/windows/msvc/gettimeofday.c b/windows/msvc/gettimeofday.c
index 363d59d7bc..6d7264ae7e 100644
--- a/windows/msvc/gettimeofday.c
+++ b/windows/msvc/gettimeofday.c
@@ -43,7 +43,7 @@ int gettimeofday(struct timeval *tp, struct timezone *tz) {
// to microseconds
ft.tm /= 10;
-
+
// convert to unix format
// number of microseconds intervals between the 1st january 1601 and the 1st january 1970 (369 years + 89 leap days)
const unsigned __int64 deltaEpoch = 11644473600000000ull;
diff --git a/windows/sleep.c b/windows/sleep.c
index 214d6d622a..b8f0a2e9b0 100644
--- a/windows/sleep.c
+++ b/windows/sleep.c
@@ -31,7 +31,7 @@
HANDLE waitTimer = NULL;
void init_sleep(void) {
- waitTimer = CreateWaitableTimer(NULL, TRUE, NULL);
+ waitTimer = CreateWaitableTimer(NULL, TRUE, NULL);
}
void deinit_sleep(void) {