diff options
author | Dominik Hackl <dominik@hackl.dhs.org> | 2005-08-07 09:42:53 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-07 10:00:40 -0700 |
commit | cfc646fa848dfa124fe4d6e0e44ef6940f7f9e6d (patch) | |
tree | c09bc7dc58be538b5b5f1ccfa40f8a405c0d675f /lib/crc32.c | |
parent | 4b0271eb9da5170ab5cadf2edf97c84712c82550 (diff) | |
download | linux-3.10-cfc646fa848dfa124fe4d6e0e44ef6940f7f9e6d.tar.gz linux-3.10-cfc646fa848dfa124fe4d6e0e44ef6940f7f9e6d.tar.bz2 linux-3.10-cfc646fa848dfa124fe4d6e0e44ef6940f7f9e6d.zip |
[PATCH] crc32.c typo fix
This patch fixes a typo in lib/crc32.c which results in incorrect debug
output.
Signed-off-by: Dominik Hackl <dominik@hackl.dhs.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'lib/crc32.c')
-rw-r--r-- | lib/crc32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crc32.c b/lib/crc32.c index 58b222783f9..065198f98b3 100644 --- a/lib/crc32.c +++ b/lib/crc32.c @@ -473,7 +473,7 @@ static u32 test_step(u32 init, unsigned char *buf, size_t len) init = bitreverse(init); crc2 = bitreverse(crc1); if (crc1 != bitreverse(crc2)) - printf("\nBit reversal fail: 0x%08x -> %0x08x -> 0x%08x\n", + printf("\nBit reversal fail: 0x%08x -> 0x%08x -> 0x%08x\n", crc1, crc2, bitreverse(crc2)); crc1 = crc32_le(init, buf, len); if (crc1 != crc2) |