summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Hash.cpp
diff options
context:
space:
mode:
authorDr. Dystopia <jonis9898@hotmail.com>2026-07-29 18:15:38 +0200
committerDr. Dystopia <jonis9898@hotmail.com>2026-07-29 18:15:38 +0200
commit61e97c9a099ed00261e299ddc43bc22c1479e220 (patch)
tree7cbb009ab32a3e852676a488805bb9366ab330d2 /Source/Core/Common/Hash.cpp
parent73de7b8d3e59d4bef685f582d305b65bdb85a707 (diff)
Replace zero constants with `nullptr`
Diffstat (limited to 'Source/Core/Common/Hash.cpp')
-rw-r--r--Source/Core/Common/Hash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Hash.cpp b/Source/Core/Common/Hash.cpp
index a3984745f5..3756bdcad4 100644
--- a/Source/Core/Common/Hash.cpp
+++ b/Source/Core/Common/Hash.cpp
@@ -427,7 +427,7 @@ u64 GetHash64(const u8* src, u32 len, u32 samples)
u32 StartCRC32()
{
- return crc32_z(0L, Z_NULL, 0);
+ return crc32_z(0L, nullptr, 0);
}
u32 UpdateCRC32(u32 crc, const u8* data, size_t len)