summaryrefslogtreecommitdiffhomepage
path: root/src/crc.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-03-05 06:22:43 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2013-03-05 06:22:43 -0800
commit6d0e2519dd3e432339b1cb75a0379df6cb8ff518 (patch)
tree09072aeb907d7d00102dcc44f4dc45b459e31dbd /src/crc.c
parent83c5274a71ea7fc40427029033edc99224e008e0 (diff)
parent4bc43803353560a9b9a54c0d568dd154ab3422fb (diff)
downloadmruby-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.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++;