mirror of
https://git.busybox.net/busybox
synced 2026-02-07 20:50:26 +00:00
lzop: fix indentation
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
7bdfb7cbf0
commit
8bcaa6a4e9
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue