From 8901297437ed9ced67e6029a1d525e8052275b7c Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Tue, 29 Nov 2022 08:56:32 +0300 Subject: [PATCH] SDL_test_md5.h: fix MD5UINT4 type to be really 32 bits. --- include/SDL3/SDL_test_md5.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL3/SDL_test_md5.h b/include/SDL3/SDL_test_md5.h index 5b59b3d927..72713e77f7 100644 --- a/include/SDL3/SDL_test_md5.h +++ b/include/SDL3/SDL_test_md5.h @@ -65,7 +65,7 @@ extern "C" { /* ------------ Definitions --------- */ /* typedef a 32-bit type */ - typedef unsigned long int MD5UINT4; + typedef Uint32 MD5UINT4; /* Data structure for MD5 (Message-Digest) computation */ typedef struct {