diff options
Diffstat (limited to 'src/hash/crc.h')
| -rw-r--r-- | src/hash/crc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hash/crc.h b/src/hash/crc.h index b3fdbf9..233debd 100644 --- a/src/hash/crc.h +++ b/src/hash/crc.h @@ -2,15 +2,15 @@ #include <stdint.h> struct crc32_hash { - uint32_t crc; + uint32_t crc; }; struct crc16_hash { - uint16_t crc; + uint16_t crc; }; struct crc8_hash { - uint8_t crc; + uint8_t crc; }; uint8_t crc8(uint8_t*, size_t len); |
