summaryrefslogtreecommitdiffstats
path: root/bbexample.c
diff options
context:
space:
mode:
Diffstat (limited to 'bbexample.c')
-rw-r--r--bbexample.c2
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;