Commit 8eeca8c7db323d82ec257db9886e2ba16c0c892a

Ozkan Sezer 2022-11-29T08:56:32

SDL_test_md5.h: fix MD5UINT4 type to be really 32 bits. (cherry picked from commit 8901297437ed9ced67e6029a1d525e8052275b7c)

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/SDL_test_md5.h b/include/SDL_test_md5.h
index 17b1d2b..5d4c2e6 100644
--- a/include/SDL_test_md5.h
+++ b/include/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 {