Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'C/XzCrc64.c')
-rwxr-xr-xC/XzCrc64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/C/XzCrc64.c b/C/XzCrc64.c
index 52952ebe..0369554b 100755
--- a/C/XzCrc64.c
+++ b/C/XzCrc64.c
@@ -1,9 +1,9 @@
/* XzCrc64.c -- CRC64 calculation
-2009-04-15 : Igor Pavlov : Public domain */
+2010-04-16 : Igor Pavlov : Public domain */
#include "XzCrc64.h"
-#define kCrc64Poly 0xC96C5795D7870F42
+#define kCrc64Poly UINT64_CONST(0xC96C5795D7870F42)
UInt64 g_Crc64Table[256];
void MY_FAST_CALL Crc64GenerateTable(void)