diff options
Diffstat (limited to 'libopenjpeg/jpwl/crc.c')
| -rw-r--r-- | libopenjpeg/jpwl/crc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopenjpeg/jpwl/crc.c b/libopenjpeg/jpwl/crc.c index 9cc57d7b..6a4a7d8f 100644 --- a/libopenjpeg/jpwl/crc.c +++ b/libopenjpeg/jpwl/crc.c @@ -90,7 +90,7 @@ const unsigned short CRC16_table[256] = { void updateCRC16(unsigned short *crc, unsigned char data) { *crc = CRC16_table[(*crc >> 8) & 0xFF] ^ (*crc << 8) ^ data; -}; +} /** file: CRC32.CPP @@ -155,6 +155,6 @@ const unsigned long CRC32_table[256] = { void updateCRC32(unsigned long *crc, unsigned char data) { *crc = CRC32_table[(unsigned char) *crc ^ data] ^ ((*crc >> 8) & 0x00FFFFFF); -}; +} #endif /* USE_JPWL */ |
