X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/a146075d74306aacf600d219dfa2df086690db53..a99c6a1921015cf26c91f6b09f53c4906006b876:/common/crc16.c diff --git a/common/crc16.c b/common/crc16.c index 1497ecf6..c26ced8a 100644 --- a/common/crc16.c +++ b/common/crc16.c @@ -1,5 +1,5 @@ -WORD update_crc16( WORD crc, BYTE c ) { - WORD i, v, tcrc = 0; +unsigned short update_crc16( unsigned short crc, unsigned char c ) { + unsigned short i, v, tcrc = 0; v = (crc ^ c) & 0xff; for (i = 0; i < 8; i++) {