diff options
author | yann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd> | 2013-11-02 12:11:04 (GMT) |
---|---|---|
committer | yann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd> | 2013-11-02 12:11:04 (GMT) |
commit | 7a863abfc2da21cf69fc2db2ad92e9f8e2c72004 (patch) | |
tree | 39eb82e5f1d1874e1efd9f748d856f489670678d /lz4cli.c | |
parent | a78db582d321446b5167de67eec8ba3239b14bbe (diff) | |
download | lz4-7a863abfc2da21cf69fc2db2ad92e9f8e2c72004.zip lz4-7a863abfc2da21cf69fc2db2ad92e9f8e2c72004.tar.gz lz4-7a863abfc2da21cf69fc2db2ad92e9f8e2c72004.tar.bz2 |
lz4.c : corrected compression efficiency issue 97 in 64-bits chained mode (-BD) for streams > 4 GB (thanks Roman Strashkin for reporting)
git-svn-id: https://lz4.googlecode.com/svn/trunk@108 650e7d94-2a16-8b24-b05c-7c0b3f6821cd
Diffstat (limited to 'lz4cli.c')
-rw-r--r-- | lz4cli.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -49,7 +49,8 @@ #endif
#define _FILE_OFFSET_BITS 64 // Large file support on 32-bits unix
-#define _POSIX_SOURCE 1 // for fileno() within <stdio.h> on unix
+#define _POSIX_SOURCE 1 // for fileno() within <stdio.h> on unix
+
//****************************
// Includes
@@ -106,7 +107,7 @@ // Constants
//****************************
#define COMPRESSOR_NAME "LZ4 Compression CLI"
-#define COMPRESSOR_VERSION "v1.0.7"
+#define COMPRESSOR_VERSION "v1.0.8"
#define COMPILED __DATE__
#define AUTHOR "Yann Collet"
#define LZ4_EXTENSION ".lz4"
|