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-w32-3f5fdc7572d932f33f81029956b87230c9b05182.tar.gz
busybox-w32-3f5fdc7572d932f33f81029956b87230c9b05182.tar.bz2
busybox-w32-3f5fdc7572d932f33f81029956b87230c9b05182.zip
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,
133 } 133 }
134 134
135 AssertH(nHeap < (BZ_MAX_ALPHA_SIZE+2), 2001); 135 AssertH(nHeap < (BZ_MAX_ALPHA_SIZE+2), 2001);
136 136
137 while (nHeap > 1) { 137 while (nHeap > 1) {
138 n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP1(heap, weight, nHeap); 138 n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP1(heap, weight, nHeap);
139 n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP1(heap, weight, nHeap); 139 n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP1(heap, weight, nHeap);
@@ -160,7 +160,7 @@ void BZ2_hbMakeCodeLengths(uint8_t *len,
160 if (j > maxLen) 160 if (j > maxLen)
161 tooLong = True; 161 tooLong = True;
162 } 162 }
163 163
164 if (!tooLong) 164 if (!tooLong)
165 break; 165 break;
166 166