Changeset 3232 in MondoRescue for branches/3.2/mindi-busybox/libbb/crc32.c


Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/libbb/crc32.c

    r2725 r3232  
    6060
    6161    while (buf != end) {
    62                 val = crc_table[(uint8_t)val ^ *(uint8_t*)buf] ^ (val >> 8);
     62        val = crc_table[(uint8_t)val ^ *(uint8_t*)buf] ^ (val >> 8);
    6363        buf = (uint8_t*)buf + 1;
    6464    }
Note: See TracChangeset for help on using the changeset viewer.