1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

cleanup: whitespace

This commit is contained in:
Zdenek Kabelac 2017-07-11 11:21:18 +02:00
parent 3cd492cd59
commit 2c3d9a07cb

View File

@ -63,7 +63,7 @@ static uint32_t _calc_crc_new(uint32_t initial, const uint8_t *buf, uint32_t siz
const uint32_t *start = (const uint32_t *) buf;
const uint32_t *end = (const uint32_t *) (buf + (size & 0xfffffffc));
uint32_t crc = initial;
/* Process 4 bytes per iteration */
while (start < end) {
crc = crc ^ xlate32(*start++);