neutrino: fix 'value computed not used' warning in radiotools.cpp

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1820 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Branch: ni/coolstream
Commit: 48fd7bc7d1
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2011-11-05 (Sat, 05 Nov 2011)



------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2011-11-05 11:36:43 +00:00
parent e6ffe3c4cc
commit 3bac01cbc3

View File

@@ -41,7 +41,7 @@ unsigned short crc16_ccitt(unsigned char *daten, int len, bool skipfirst)
// with start 0xffff and result invers // with start 0xffff and result invers
register unsigned short crc = 0xffff; register unsigned short crc = 0xffff;
if (skipfirst) *daten++; if (skipfirst) daten++;
while (len--) { while (len--) {
crc = (crc >> 8) | (crc << 8); crc = (crc >> 8) | (crc << 8);
crc ^= *daten++; crc ^= *daten++;