aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bzip2/bzlib_huffman.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-07-15 12:28:22 -0600
committerTom Rini <trini@konsulko.com>2024-07-15 12:28:22 -0600
commitaf3c2166d54cdb71914baece900095bad5a44862 (patch)
treefb3305c01cc31f9d81ff9822486daa6f6243f98e /lib/bzip2/bzlib_huffman.c
parentc00018507d9923b9137be4b89eb3c3110708a096 (diff)
parent3451b69e33dd3c862d9a843ed22c06c3184136b8 (diff)
downloadu-boot-af3c2166d54cdb71914baece900095bad5a44862.tar.gz
Merge patch series "api: Remove duplicate newlines"WIP/15Jul2024
This removes a number of duplicate newlines throughout the codebase.
Diffstat (limited to 'lib/bzip2/bzlib_huffman.c')
-rw-r--r--lib/bzip2/bzlib_huffman.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/bzip2/bzlib_huffman.c b/lib/bzip2/bzlib_huffman.c
index 801b8ec39a0..904783d7cb1 100644
--- a/lib/bzip2/bzlib_huffman.c
+++ b/lib/bzip2/bzlib_huffman.c
@@ -59,7 +59,6 @@
For more information on these sources, see the manual.
--*/
-
#include "bzlib_private.h"
/*---------------------------------------------------*/
@@ -99,7 +98,6 @@
heap[zz] = tmp; \
}
-
/*---------------------------------------------------*/
void BZ2_hbMakeCodeLengths ( UChar *len,
Int32 *freq,
@@ -171,7 +169,6 @@ void BZ2_hbMakeCodeLengths ( UChar *len,
}
}
-
/*---------------------------------------------------*/
void BZ2_hbAssignCodes ( Int32 *code,
UChar *length,
@@ -189,7 +186,6 @@ void BZ2_hbAssignCodes ( Int32 *code,
}
}
-
/*---------------------------------------------------*/
void BZ2_hbCreateDecodeTables ( Int32 *limit,
Int32 *base,
@@ -223,7 +219,6 @@ void BZ2_hbCreateDecodeTables ( Int32 *limit,
base[i] = ((limit[i-1] + 1) << 1) - base[i];
}
-
/*-------------------------------------------------------------*/
/*--- end huffman.c ---*/
/*-------------------------------------------------------------*/