diff options
author | 2013-01-11 07:32:46 +0000 | |
---|---|---|
committer | 2013-01-11 07:32:46 +0000 | |
commit | 0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch) | |
tree | 234109de1123b13f217494af4b3f8efad346d5cc /src/lib/formats/imageutl.c | |
parent | 111157ca09a9ff60fe4a9ba49173c315e94314fa (diff) |
Cleanups and version bumpmame0148
Diffstat (limited to 'src/lib/formats/imageutl.c')
-rw-r--r-- | src/lib/formats/imageutl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/formats/imageutl.c b/src/lib/formats/imageutl.c index b662792ba95..74f85a97d44 100644 --- a/src/lib/formats/imageutl.c +++ b/src/lib/formats/imageutl.c @@ -106,7 +106,7 @@ unsigned short ccitt_crc16(unsigned short crc, const unsigned char *buffer, size unsigned short ccitt_crc16_one( unsigned short crc, const unsigned char data ) { - return (crc << 8) ^ ccitt_crc16_table[(crc >> 8) ^ data]; + return (crc << 8) ^ ccitt_crc16_table[(crc >> 8) ^ data]; } @@ -220,4 +220,3 @@ void image_specify_extension(char *buffer, size_t buffer_len, const char *extens } } } - |