From ffc230a83edf094dfa39a11afe2febdee498e48e Mon Sep 17 00:00:00 2001 From: nu774 Date: Wed, 20 Feb 2013 10:45:41 +0900 Subject: [PATCH] simplify __timeb64 condition --- src/compat_win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compat_win32.c b/src/compat_win32.c index 684998e..4e3776c 100644 --- a/src/compat_win32.c +++ b/src/compat_win32.c @@ -31,7 +31,7 @@ int __wgetmainargs(int *, wchar_t ***, wchar_t ***, int, _startupinfo *); int64_t aacenc_timer(void) { -#if _MSC_VER || HAVE_STRUCT___TIMEB64 +#if HAVE_STRUCT___TIMEB64 struct __timeb64 tv; _ftime64(&tv); #else -- 2.30.2