From 195528adc6829b649ae1fdc6b433ac7fbccec36c Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 24 Apr 2018 06:55:54 -0600 Subject: [PATCH] Loader: Fix type definitions in picosha2.hpp --- stratosphere/loader/include/picosha2.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stratosphere/loader/include/picosha2.hpp b/stratosphere/loader/include/picosha2.hpp index a373b6cd7..e78404a6d 100644 --- a/stratosphere/loader/include/picosha2.hpp +++ b/stratosphere/loader/include/picosha2.hpp @@ -37,8 +37,8 @@ THE SOFTWARE. #include namespace picosha2 { -typedef unsigned long word_t; -typedef unsigned char byte_t; +typedef uint32_t word_t; +typedef uint8_t byte_t; static const size_t k_digest_size = 32;