* builds/windows/ftsystem.c: Fix ancient condition.

This commit is contained in:
Alexei Podtelezhnikov 2025-01-10 22:44:40 +00:00
parent 1f57020ff3
commit 8d536080ec
1 changed files with 1 additions and 1 deletions

View File

@ -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,