summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Hash.cpp
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2020-04-08 18:19:37 -0700
committerPokechu22 <Pokechu022@gmail.com>2020-07-24 15:06:39 -0700
commit59dc7cfe7dc962ef5cddbb0055fee6923db33445 (patch)
tree77ad73bfaf3d4079631b50c219167e6769ab26cd /Source/Core/Common/Hash.cpp
parentb996dcf8719194152c88e236c1d473ace644f0f9 (diff)
Use size_t in some DSP code code
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 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;