1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

tiff: Fix size_t type size detection on 64-bit.

This commit is contained in:
Alexandre Julliard 2023-11-21 11:15:05 +01:00
parent 97ebd9f1ac
commit 9011462be8

View File

@ -93,7 +93,11 @@
#define PACKAGE_URL ""
/* The size of `size_t', as computed by sizeof. */
#ifdef _WIN64
#define SIZEOF_SIZE_T 8
#else
#define SIZEOF_SIZE_T 4
#endif
/* Default size of the strip in bytes (when strip chopping enabled) */
#define STRIP_SIZE_DEFAULT 8192