Commit 9011462b authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 97ebd9f1
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment