From fbbe6309fcac83414085905d985f17c3606a0643 Mon Sep 17 00:00:00 2001 From: kano4 Date: Tue, 5 Mar 2013 23:06:44 +0900 Subject: Replace tabs with spaces --- src/crc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/crc.c') 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++; -- cgit v1.2.3