]> git.ipfire.org Git - thirdparty/xz.git/commitdiff
liblzma: CRC: Add empty lines.
authorLasse Collin <lasse.collin@tukaani.org>
Fri, 20 Oct 2023 20:25:14 +0000 (23:25 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Wed, 10 Jan 2024 15:19:03 +0000 (17:19 +0200)
And remove one too.

src/liblzma/check/crc32_fast.c
src/liblzma/check/crc64_fast.c
src/liblzma/check/crc_clmul.c

index 736590497edb3cc8c3d71f204e790fb3fe12284c..9fce94d34ed8e84c3a0d7f9f6c823d83b7f79e5f 100644 (file)
@@ -15,6 +15,7 @@
 #include "check.h"
 #include "crc_common.h"
 
+
 #ifdef CRC_GENERIC
 
 ///////////////////
@@ -80,6 +81,7 @@ crc32_generic(const uint8_t *buf, size_t size, uint32_t crc)
 }
 #endif
 
+
 #if defined(CRC_GENERIC) && defined(CRC_CLMUL)
 
 //////////////////////////
index 4e6633db5e15cae3fa4c5b0df4c9298f97ef6284..ce74901c33e12859e7ceae3604c16676fe790c84 100644 (file)
@@ -14,6 +14,7 @@
 #include "check.h"
 #include "crc_common.h"
 
+
 #ifdef CRC_GENERIC
 
 /////////////////////////////////
@@ -75,7 +76,9 @@ crc64_generic(const uint8_t *buf, size_t size, uint64_t crc)
 }
 #endif
 
+
 #if defined(CRC_GENERIC) && defined(CRC_CLMUL)
+
 //////////////////////////
 // Function dispatching //
 //////////////////////////
index 0c2bdab1886a34aa65f25bb991b25d7de0804ecf..8db829409dc96f41645a15974db26f2ece990b7a 100644 (file)
@@ -22,7 +22,6 @@
 //              Lasse Collin
 //              Jia Tan
 //
-//
 //  This file has been put into the public domain.
 //  You can do whatever you want with this file.
 //