Commit 3d9fecda authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #1118 from nemerle/fix_crc_signature

Fix the calc_crc_16_ccitt signature to match the source file
parents dd56b936 642ea41a
......@@ -141,9 +141,8 @@ bin_to_uint8(const uint8_t *bin)
}
/* crc.c */
uint32_t
calc_crc_16_ccitt(const uint8_t *src, uint32_t nbytes, uint16_t crcwk);
uint16_t
calc_crc_16_ccitt(const uint8_t *src, size_t nbytes, uint16_t crc);
#if defined(__cplusplus)
} /* extern "C" { */
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment