diff options
author | Denis Vlasenko | 2006-09-17 16:28:10 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-17 16:28:10 +0000 |
commit | 9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e (patch) | |
tree | 94c3c0678d1349497abe2db6004e9331e50f6d37 /libbb/crc32.c | |
parent | a6127aacef047ed7661722705b052811fbe7f467 (diff) | |
download | busybox-9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e.zip busybox-9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e.tar.gz |
whitespace cleanup
Diffstat (limited to 'libbb/crc32.c')
-rw-r--r-- | libbb/crc32.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libbb/crc32.c b/libbb/crc32.c index 538a136..1e4a57e 100644 --- a/libbb/crc32.c +++ b/libbb/crc32.c @@ -6,7 +6,7 @@ * very well-known) * * The following function creates a CRC32 table depending on whether - * a big-endian (0x04c11db7) or little-endian (0xedb88320) CRC32 is + * a big-endian (0x04c11db7) or little-endian (0xedb88320) CRC32 is * required. Admittedly, there are other CRC32 polynomials floating * around, but Busybox doesn't use them. * @@ -18,12 +18,12 @@ uint32_t *crc32_filltable(int endian) { - + uint32_t *crc_table = xmalloc(256 * sizeof(uint32_t)); uint32_t polynomial = endian ? 0x04c11db7 : 0xedb88320; uint32_t c; int i, j; - + for (i = 0; i < 256; i++) { c = endian ? (i << 24) : i; for (j = 8; j; j--) { |