summaryrefslogtreecommitdiffhomepage
path: root/src/crc.c
diff options
context:
space:
mode:
authorkano4 <[email protected]>2013-03-05 23:06:44 +0900
committerkano4 <[email protected]>2013-03-05 23:06:44 +0900
commitfbbe6309fcac83414085905d985f17c3606a0643 (patch)
tree23f45bea03f76866aab6778fd92745baf6d7b515 /src/crc.c
parent83c5274a71ea7fc40427029033edc99224e008e0 (diff)
downloadmruby-fbbe6309fcac83414085905d985f17c3606a0643.tar.gz
mruby-fbbe6309fcac83414085905d985f17c3606a0643.zip
Replace tabs with spaces
Diffstat (limited to 'src/crc.c')
-rw-r--r--src/crc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crc.c b/src/crc.c
index 0451c363c..c150f966b 100644
--- a/src/crc.c
+++ b/src/crc.c
@@ -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++;