diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-05 06:22:43 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-05 06:22:43 -0800 |
| commit | 6d0e2519dd3e432339b1cb75a0379df6cb8ff518 (patch) | |
| tree | 09072aeb907d7d00102dcc44f4dc45b459e31dbd /src/crc.c | |
| parent | 83c5274a71ea7fc40427029033edc99224e008e0 (diff) | |
| parent | 4bc43803353560a9b9a54c0d568dd154ab3422fb (diff) | |
| download | mruby-6d0e2519dd3e432339b1cb75a0379df6cb8ff518.tar.gz mruby-6d0e2519dd3e432339b1cb75a0379df6cb8ff518.zip | |
Merge pull request #952 from kano4/master
Add include guard in node.h and Replace tabs with spaces
Diffstat (limited to 'src/crc.c')
| -rw-r--r-- | src/crc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ uint16_t calc_crc_16_ccitt(unsigned char *src, int nbytes) { uint32_t crcwk = 0ul; - int ibyte, ibit; + int ibyte, ibit; for (ibyte = 0; ibyte < nbytes; ibyte++) { crcwk |= *src++; |
