X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=deflate.c;h=2a0316b9dc0a4151e937b60dacf2e111c69b40d7;hb=aef5feaf109fa88968c9e1c78754e20386c4b96a;hp=8a257f37fe110c1083d9f8fa360856405388a534;hpb=d996119145a5b3accd5e8f34a6e1766942a30cbd;p=debian%2Fgzip diff --git a/deflate.c b/deflate.c index 8a257f3..2a0316b 100644 --- a/deflate.c +++ b/deflate.c @@ -307,7 +307,7 @@ void lm_init (pack_level, flags) compr_level = pack_level; /* Initialize the hash table. */ -#if defined(MAXSEG_64K) && HASH_BITS == 15 +#if defined MAXSEG_64K && HASH_BITS == 15 for (j = 0; j < HASH_SIZE; j++) head[j] = NIL; #else memzero((char*)head, HASH_SIZE*sizeof(*head)); @@ -414,7 +414,7 @@ longest_match(IPos cur_match) /* Skip to next match if the match length cannot increase * or if the match length is less than 2: */ -#if (defined(UNALIGNED_OK) && MAX_MATCH == 258) +#if defined UNALIGNED_OK && MAX_MATCH == 258 /* This code assumes sizeof(unsigned short) == 2. Do not use * UNALIGNED_OK if your compiler uses a different size. */