summaryrefslogtreecommitdiff
path: root/ev_win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'ev_win32.c')
-rw-r--r--ev_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ev_win32.c b/ev_win32.c
index 727c686..a048c0b 100644
--- a/ev_win32.c
+++ b/ev_win32.c
@@ -146,7 +146,7 @@ ev_time (void)
ui.u.HighPart = ft.dwHighDateTime;
/* msvc cannot convert ulonglong to double... yes, it is that sucky */
- return (__int64)(ui.QuadPart - 116444736000000000) * 1e-7;
+ return (LONGLONG)(ui.QuadPart - 116444736000000000) * 1e-7;
}
#endif