diff options
| author | kano4 <[email protected]> | 2013-03-05 23:06:44 +0900 |
|---|---|---|
| committer | kano4 <[email protected]> | 2013-03-05 23:06:44 +0900 |
| commit | fbbe6309fcac83414085905d985f17c3606a0643 (patch) | |
| tree | 23f45bea03f76866aab6778fd92745baf6d7b515 /src/crc.c | |
| parent | 83c5274a71ea7fc40427029033edc99224e008e0 (diff) | |
| download | mruby-fbbe6309fcac83414085905d985f17c3606a0643.tar.gz mruby-fbbe6309fcac83414085905d985f17c3606a0643.zip | |
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++; |
