tiff: Fix size_t type size detection on 64-bit.
This commit is contained in:
parent
97ebd9f1ac
commit
9011462be8
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue