summaryrefslogtreecommitdiff
path: root/lib/zlib/deflate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/zlib/deflate.h')
-rw-r--r--lib/zlib/deflate.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/zlib/deflate.h b/lib/zlib/deflate.h
index 4c53b94af0b..b4a4634ec78 100644
--- a/lib/zlib/deflate.h
+++ b/lib/zlib/deflate.h
@@ -57,7 +57,6 @@
#define FINISH_STATE 666
/* Stream status */
-
/* Data structure describing a single value and its code string. */
typedef struct ct_data_s {
union {
@@ -269,7 +268,6 @@ typedef struct internal_state {
*/
#define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
-
#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
/* Minimum amount of lookahead, except at the end of the input file.
* See deflate.c for comments about the MIN_MATCH+1.