aboutsummaryrefslogtreecommitdiff
path: root/archival/bz/huffman.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-10-14 04:55:59 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-10-14 04:55:59 +0000
commit3f5fdc7572d932f33f81029956b87230c9b05182 (patch)
tree13e8b0c3dc4c11fe0ac09affef497075177cd648 /archival/bz/huffman.c
parentbe039374f3bd1c76535387ac4d079506804be270 (diff)
downloadbusybox-3f5fdc7572d932f33f81029956b87230c9b05182.tar.gz
remove trailing whitespace
Diffstat (limited to 'archival/bz/huffman.c')
-rw-r--r--archival/bz/huffman.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/bz/huffman.c b/archival/bz/huffman.c
index f016c968c..3f80c9976 100644
--- a/archival/bz/huffman.c
+++ b/archival/bz/huffman.c
@@ -133,7 +133,7 @@ void BZ2_hbMakeCodeLengths(uint8_t *len,
}
AssertH(nHeap < (BZ_MAX_ALPHA_SIZE+2), 2001);
-
+
while (nHeap > 1) {
n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP1(heap, weight, nHeap);
n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP1(heap, weight, nHeap);
@@ -160,7 +160,7 @@ void BZ2_hbMakeCodeLengths(uint8_t *len,
if (j > maxLen)
tooLong = True;
}
-
+
if (!tooLong)
break;