diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-31 23:05:48 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-31 23:05:48 +0900 |
| commit | cc6e62ef3eb481bb6959a274c430f3e3604b7b47 (patch) | |
| tree | 68f225b03f85916765b234e55edd41da13465975 | |
| parent | 580f1e922bf7fbf186dc951ec33b7fa86cce48d3 (diff) | |
| parent | 3d9fecda43cc9be59a458c3e37bbd15a9c3412c6 (diff) | |
| download | mruby-cc6e62ef3eb481bb6959a274c430f3e3604b7b47.tar.gz mruby-cc6e62ef3eb481bb6959a274c430f3e3604b7b47.zip | |
Merge branch 'master' of github.com:mruby/mruby
| -rw-r--r-- | include/mruby/dump.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/mruby/dump.h b/include/mruby/dump.h index 2533a4c93..d1d097cd2 100644 --- a/include/mruby/dump.h +++ b/include/mruby/dump.h @@ -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 |
