1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-05 19:51:45 +00:00

Loader: Fix type definitions in picosha2.hpp

This commit is contained in:
Michael Scire 2018-04-24 06:55:54 -06:00
parent e443b625ec
commit 195528adc6

View file

@ -37,8 +37,8 @@ THE SOFTWARE.
#include <vector>
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;