diff options
author | Marek Vasut <marek.vasut+renesas@mailbox.org> | 2024-07-13 15:19:22 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-07-15 12:12:18 -0600 |
commit | 2f8c004a5ae51b9b88479f3a728c564c021f50c5 (patch) | |
tree | a8b457a42581ce00d6400f0318558fe86e6788ce /lib/bzip2/bzlib_decompress.c | |
parent | dc5e2057131fd90bb62bb8c6b92abdb86ae32624 (diff) |
lib: Remove duplicate newlines
Drop all duplicate newlines. No functional change.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Diffstat (limited to 'lib/bzip2/bzlib_decompress.c')
-rw-r--r-- | lib/bzip2/bzlib_decompress.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/bzip2/bzlib_decompress.c b/lib/bzip2/bzlib_decompress.c index e56ab6674b0..53695c13bfc 100644 --- a/lib/bzip2/bzlib_decompress.c +++ b/lib/bzip2/bzlib_decompress.c @@ -60,10 +60,8 @@ For more information on these sources, see the manual. --*/ - #include "bzlib_private.h" - /*---------------------------------------------------*/ static void makeMaps_d ( DState* s ) @@ -77,7 +75,6 @@ void makeMaps_d ( DState* s ) } } - /*---------------------------------------------------*/ #define RETURN(rrr) \ { retVal = rrr; goto save_state_and_return; }; @@ -143,7 +140,6 @@ void makeMaps_d ( DState* s ) lval = gPerm[zvec - gBase[zn]]; \ } - /*---------------------------------------------------*/ Int32 BZ2_decompress ( DState* s ) { @@ -605,7 +601,6 @@ Int32 BZ2_decompress ( DState* s ) RETURN(BZ_OK); - endhdr_2: GET_UCHAR(BZ_X_ENDHDR_2, uc); @@ -667,7 +662,6 @@ Int32 BZ2_decompress ( DState* s ) return retVal; } - /*-------------------------------------------------------------*/ /*--- end decompress.c ---*/ /*-------------------------------------------------------------*/ |