summaryrefslogtreecommitdiff
path: root/crc24q.c
diff options
context:
space:
mode:
authorChris Kuethe <chris.kuethe@gmail.com>2008-08-03 07:17:25 +0000
committerChris Kuethe <chris.kuethe@gmail.com>2008-08-03 07:17:25 +0000
commit3ca39fe6c88d372412a6f1812568c42f4abe3ff9 (patch)
treec4675d676d2dda35a4be08d86765e5a80cacb8f7 /crc24q.c
parent226179229607aa67c646205f9e4dc31e750c868c (diff)
downloadgpsd-3ca39fe6c88d372412a6f1812568c42f4abe3ff9.tar.gz
whitespace fixes
Diffstat (limited to 'crc24q.c')
-rw-r--r--crc24q.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crc24q.c b/crc24q.c
index 015cd71b..005fd2b6 100644
--- a/crc24q.c
+++ b/crc24q.c
@@ -149,7 +149,7 @@ unsigned crc24q_hash(unsigned char *data, int len)
unsigned crc = 0;
for (i = 0; i < len; i++) {
- crc = (crc << 8) ^ crc24q[data[i] ^ (unsigned char)(crc>>16)];
+ crc = (crc << 8) ^ crc24q[data[i] ^ (unsigned char)(crc>>16)];
}
crc = (crc & 0x00ffffff);