diff --git a/src/ZoneTree/Directory.Build.props b/src/ZoneTree/Directory.Build.props
index fdbc129..a7b3b8c 100644
--- a/src/ZoneTree/Directory.Build.props
+++ b/src/ZoneTree/Directory.Build.props
@@ -5,8 +5,8 @@
Ahmed Yasin Koculu
ZoneTree
ZoneTree
- 1.6.7.0
- 1.6.7.0
+ 1.6.8.0
+ 1.6.8.0
Ahmed Yasin Koculu
ZoneTree
ZoneTree is a persistent, high-performance, transactional, ACID-compliant ordered key-value database for NET. It can operate in memory or on local/cloud storage.
diff --git a/src/ZoneTree/WAL/Crc32Computer_SSE42_X86.cs b/src/ZoneTree/WAL/Crc32Computer_SSE42_X86.cs
index e88f13a..b52b8b8 100644
--- a/src/ZoneTree/WAL/Crc32Computer_SSE42_X86.cs
+++ b/src/ZoneTree/WAL/Crc32Computer_SSE42_X86.cs
@@ -10,7 +10,7 @@ public sealed class Crc32Computer_SSE42_X86
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static uint Compute(uint crc, ulong data)
{
- var result = (uint)Sse42.Crc32(crc, (uint)data);
+ crc = (uint)Sse42.Crc32(crc, (uint)data);
return Sse42.Crc32(crc, (uint)(data >> 32));
}