diff options
Diffstat (limited to 'source/fitz/memory.c')
-rw-r--r-- | source/fitz/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/memory.c b/source/fitz/memory.c index f9e7b4f6..e26ddd0d 100644 --- a/source/fitz/memory.c +++ b/source/fitz/memory.c @@ -269,7 +269,7 @@ int fz_lock_taken[FZ_LOCK_DEBUG_CONTEXT_MAX][FZ_LOCK_MAX] = { { 0 } }; * when threads are involved. */ static int ms_clock(void) { -#ifdef _WIN32 +#if defined(_WIN32) || defined(_WIN64) return (int)GetTickCount(); #else struct timeval tp; |