From: Denys Vlasenko Date: Sat, 29 May 2010 23:57:52 +0000 (+0200) Subject: lzop: fix indentation X-Git-Tag: 1_17_0~146 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8bcaa6a4e9f3c88bc86b2064950fcd06d6424230;p=oweals%2Fbusybox.git lzop: fix indentation Signed-off-by: Denys Vlasenko --- diff --git a/archival/lzop.c b/archival/lzop.c index d6cf6f4f5..ceace0436 100644 --- a/archival/lzop.c +++ b/archival/lzop.c @@ -475,7 +475,7 @@ lzo_crc32(uint32_t c, const uint8_t* buf, unsigned len) crc = ~c; if (len != 0) do { - crc = G.lzo_crc32_table[((int)crc ^ *buf) & 0xff] ^ (crc >> 8); + crc = G.lzo_crc32_table[(uint8_t)((int)crc ^ *buf)] ^ (crc >> 8); buf += 1; len -= 1; } while (len > 0);