* builds/windows/ftsystem.c: Fix ancient condition.
This commit is contained in:
parent
1f57020ff3
commit
8d536080ec
|
@ -296,7 +296,7 @@
|
|||
|
||||
/* support for really old Windows */
|
||||
#if defined( _WIN32_WCE ) || defined ( _WIN32_WINDOWS ) || \
|
||||
!defined( _WIN32_WINNT ) || _WIN32_WINNT <= 0x0400
|
||||
( defined( _WIN32_WINNT ) && _WIN32_WINNT <= 0x0400 )
|
||||
|
||||
FT_LOCAL_DEF( BOOL )
|
||||
GetFileSizeEx( HANDLE hFile,
|
||||
|
|
Loading…
Reference in New Issue