summaryrefslogtreecommitdiff
path: root/lib/zlib/deflate.h
diff options
context:
space:
mode:
authorMarek Vasut <[email protected]>2024-07-13 15:19:22 +0200
committerTom Rini <[email protected]>2024-07-15 12:12:18 -0600
commit2f8c004a5ae51b9b88479f3a728c564c021f50c5 (patch)
treea8b457a42581ce00d6400f0318558fe86e6788ce /lib/zlib/deflate.h
parentdc5e2057131fd90bb62bb8c6b92abdb86ae32624 (diff)
lib: Remove duplicate newlines
Drop all duplicate newlines. No functional change. Signed-off-by: Marek Vasut <[email protected]>
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.