summaryrefslogtreecommitdiffstats
path: root/programs/platform.h
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2017-02-15 16:16:15 (GMT)
committerPrzemyslaw Skibinski <inikep@gmail.com>2017-02-15 16:16:15 (GMT)
commit40ad1e85d49bd067a0b06b0e923ec47cc9930173 (patch)
tree65859b53cce120483f80847352a8460ead61f3fa /programs/platform.h
parentc139eb40b0d78db390bdc37188eb696d9272f9c4 (diff)
downloadlz4-40ad1e85d49bd067a0b06b0e923ec47cc9930173.zip
lz4-40ad1e85d49bd067a0b06b0e923ec47cc9930173.tar.gz
lz4-40ad1e85d49bd067a0b06b0e923ec47cc9930173.tar.bz2
upgraded util.h
Diffstat (limited to 'programs/platform.h')
-rw-r--r--programs/platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/platform.h b/programs/platform.h
index f9eb81a..51ce1ac 100644
--- a/programs/platform.h
+++ b/programs/platform.h
@@ -59,7 +59,7 @@ extern "C" {
/* *********************************************************
* Turn on Large Files support (>4GB) for 32-bit Linux/Unix
***********************************************************/
-#if !defined(__64BIT__) || defined(__MINGW32__) /* No point defining Large file for 64 bit but MinGW requires it */
+#if !defined(__64BIT__) || defined(__MINGW32__) /* No point defining Large file for 64 bit but MinGW-w64 requires it */
# if !defined(_FILE_OFFSET_BITS)
# define _FILE_OFFSET_BITS 64 /* turn off_t into a 64-bit type for ftello, fseeko */
# endif