From 59dc7cfe7dc962ef5cddbb0055fee6923db33445 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Wed, 8 Apr 2020 18:19:37 -0700 Subject: Use size_t in some DSP code code --- Source/Core/Common/Hash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/Common/Hash.cpp') diff --git a/Source/Core/Common/Hash.cpp b/Source/Core/Common/Hash.cpp index 525f0b21e2..395865c475 100644 --- a/Source/Core/Common/Hash.cpp +++ b/Source/Core/Common/Hash.cpp @@ -95,7 +95,7 @@ u32 HashAdler32(const u8* data, size_t len) // Stupid hash - but can't go back now :) // Don't use for new things. At least it's reasonably fast. -u32 HashEctor(const u8* ptr, int length) +u32 HashEctor(const u8* ptr, size_t length) { u32 crc = 0; -- cgit v1.2.3