diff options
author | Maninder Singh | 2015-06-10 03:47:27 +0000 |
---|---|---|
committer | Denys Vlasenko | 2015-07-13 03:25:46 +0200 |
commit | 97f2f7ca7fe10783a592087df989a7f394492fa1 (patch) | |
tree | 4d70075a3771a6fb2d06d8cdd3e421474d7ce779 /archival/gzip.c | |
parent | b7ee7e1e13fa4a680e8b228bd158e7aa53fe342a (diff) | |
download | busybox-97f2f7ca7fe10783a592087df989a7f394492fa1.zip busybox-97f2f7ca7fe10783a592087df989a7f394492fa1.tar.gz |
Removes stray empty line from code
This patch removes stray empty line from busybox code
reported by script find_stray_empty_lines
Signed-off-by: Maninder Singh <maninder1.s@samsung.com>
Signed-off-by: Akhilesh Kumar <akhilesh.k@samsung.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/gzip.c')
-rw-r--r-- | archival/gzip.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/archival/gzip.c b/archival/gzip.c index 42b2f0b..c917130 100644 --- a/archival/gzip.c +++ b/archival/gzip.c @@ -1372,7 +1372,6 @@ static void build_tree(tree_desc * desc) /* and insert the new node in the heap */ G2.heap[SMALLEST] = node++; pqdownheap(tree, SMALLEST); - } while (G2.heap_len >= 2); G2.heap[--G2.heap_max] = G2.heap[SMALLEST]; @@ -1720,7 +1719,6 @@ static ulg flush_block(char *buf, ulg stored_len, int eof) copy_block(buf, (unsigned) stored_len, 0); /* without header */ G2.compressed_len = stored_len << 3; - } else if (stored_len + 4 <= opt_lenb && buf != NULL) { /* 4: two words for the lengths */ /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE. @@ -1734,7 +1732,6 @@ static ulg flush_block(char *buf, ulg stored_len, int eof) G2.compressed_len += (stored_len + 4) << 3; copy_block(buf, (unsigned) stored_len, 1); /* with header */ - } else if (static_lenb == opt_lenb) { send_bits((STATIC_TREES << 1) + eof, 3); compress_block((ct_data *) G2.static_ltree, (ct_data *) G2.static_dtree); |