Commit e8c76298 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

do not use 'long' to store 4 bytes, as 64bit architectures have 64bit longs.

parent 0ef3e6fe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ documentation and/or software.
#include <string.h>

/* UINT4 defines a four byte word */
typedef unsigned long int UINT4;
typedef unsigned int UINT4;

/* MD5 context. */
struct md5_ctx {