crc32: cleanups, no code changes
authorDenys Vlasenko <vda.linux@googlemail.com>
Thu, 28 Oct 2010 03:38:11 +0000 (05:38 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Thu, 28 Oct 2010 03:38:11 +0000 (05:38 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libbb/crc32.c
util-linux/fdisk_gpt.c

index 2cc6ea779828af9092b45c9fb515970c5ef0c43d..c63bf07720582b6e306407fdf73b20983822bdb3 100644 (file)
@@ -59,7 +59,7 @@ uint32_t FAST_FUNC crc32_block_endian0(uint32_t val, const void *buf, unsigned l
        const void *end = (uint8_t*)buf + len;
 
        while (buf != end) {
-                val = crc_table        [(uint8_t)val ^ *(uint8_t*)buf] ^ (val >> 8);
+                val = crc_table[(uint8_t)val ^ *(uint8_t*)buf] ^ (val >> 8);
                buf = (uint8_t*)buf + 1;
        }
        return val;
index 4dfb5b227ffeaca4219aca61afbd259814e78112..1ab1293defd27960c53c094d65d56ace2cca44a9 100644 (file)
@@ -55,11 +55,10 @@ gpt_part(int i)
        return (gpt_partition *)&part_array[i * part_entry_len];
 }
 
-/* TODO: move to libbb */
 static uint32_t
 gpt_crc32(void *buf, int len)
 {
-       return 0xffffffff ^ crc32_block_endian0(0xffffffff, buf, len, global_crc32_table);
+       return ~crc32_block_endian0(0xffffffff, buf, len, global_crc32_table);
 }
 
 static void