aboutsummaryrefslogtreecommitdiff
path: root/lib/md5.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-09-07 15:00:10 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-09-07 15:00:10 +0000
commite8c762981a23b2527b7a64c0a7f4db88ddef48f8 (patch)
tree0625dd255c07a8820bb1612d94efa07c1040ede2 /lib/md5.c
parent0ef3e6fe8a323d858a591ee71a9b16ed5add3255 (diff)
do not use 'long' to store 4 bytes, as 64bit architectures have 64bit longs.
Diffstat (limited to 'lib/md5.c')
-rw-r--r--lib/md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/md5.c b/lib/md5.c
index d7da941f1..99d9e05d7 100644
--- a/lib/md5.c
+++ b/lib/md5.c
@@ -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 {