summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Hash.cpp
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2026-07-31 13:49:48 +1200
committerGitHub <noreply@github.com>2026-07-31 13:49:48 +1200
commit3bd410c4c5bf9f66b013d63f4421364e95bd9722 (patch)
tree5290c9f624c4c460a4148925c007087152b50e20 /Source/Core/Common/Hash.cpp
parente463c64b7ad37fbb33c0242052d5f4245815ec6e (diff)
parent61e97c9a099ed00261e299ddc43bc22c1479e220 (diff)
Merge pull request #14775 from tygyh/Replace-zero-constants-with-`nullptr`
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)