diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 14:03:18 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 14:03:18 +0000 |
commit | c845b66d8b17513b64acac9e74d20631a68e22b1 (patch) | |
tree | 21d33ec195507dbd025d6743a375db317f4e7f49 /bbexample.c | |
parent | Adding debian version 1.6~pre2-2. (diff) | |
download | lzlib-c845b66d8b17513b64acac9e74d20631a68e22b1.tar.xz lzlib-c845b66d8b17513b64acac9e74d20631a68e22b1.zip |
Merging upstream version 1.6~pre3.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'bbexample.c')
-rw-r--r-- | bbexample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bbexample.c b/bbexample.c index 7a8e08c..da15738 100644 --- a/bbexample.c +++ b/bbexample.c @@ -34,7 +34,7 @@ uint8_t * bbcompress( const uint8_t * const data, const int size, struct LZ_Encoder * encoder; uint8_t * new_data; const int match_len_limit = 36; - const unsigned long long member_size = INT64_MAX; + const unsigned long long member_size = 0x7FFFFFFFFFFFFFFFULL; /* INT64_MAX */ int delta_size, new_data_size; int new_pos = 0; int written = 0; |