From: Daniel Stenberg Date: Sun, 7 Sep 2003 15:00:10 +0000 (+0000) Subject: do not use 'long' to store 4 bytes, as 64bit architectures have 64bit longs. X-Git-Tag: curl-7_10_8~227 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e8c762981a23b2527b7a64c0a7f4db88ddef48f8;p=thirdparty%2Fcurl.git do not use 'long' to store 4 bytes, as 64bit architectures have 64bit longs. --- diff --git a/lib/md5.c b/lib/md5.c index d7da941f13..99d9e05d70 100644 --- a/lib/md5.c +++ b/lib/md5.c @@ -53,7 +53,7 @@ documentation and/or software. #include /* UINT4 defines a four byte word */ -typedef unsigned long int UINT4; +typedef unsigned int UINT4; /* MD5 context. */ struct md5_ctx {