diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-09-07 15:00:10 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-09-07 15:00:10 +0000 |
commit | e8c762981a23b2527b7a64c0a7f4db88ddef48f8 (patch) | |
tree | 0625dd255c07a8820bb1612d94efa07c1040ede2 | |
parent | 0ef3e6fe8a323d858a591ee71a9b16ed5add3255 (diff) |
do not use 'long' to store 4 bytes, as 64bit architectures have 64bit longs.
-rw-r--r-- | lib/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |