X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/a087e9cf40bdb4d7546a7645995624a519aef2a6..f07ffa7672ccff152875a5560fd7d2e3edbd6165:/common/crc64.c?ds=inline

diff --git a/common/crc64.c b/common/crc64.c
index 709c64d6..adf62d97 100644
--- a/common/crc64.c
+++ b/common/crc64.c
@@ -74,9 +74,7 @@ const uint64_t crc64_table[] = {
 
 void crc64 (const uint8_t *data, const size_t len, uint64_t *crc) {
 
-	for (size_t i = 0; i < len; i++)
-	{
-		//uint8_t tableIndex = (((uint8_t)(*crc >> 56)) ^ data[i]) & 0xff;
+	for (size_t i = 0; i < len; i++) {
 		uint8_t tableIndex = (((uint8_t)(*crc >> 56)) ^ data[i]) & 0xff;
 		*crc = crc64_table[tableIndex] ^ (*crc << 8);
 	}