mirror of
https://github.com/curl/curl.git
synced 2026-08-25 06:53:31 +03:00
do not use 'long' to store 4 bytes, as 64bit architectures have 64bit longs.
This commit is contained in:
parent
0ef3e6fe8a
commit
e8c762981a
1 changed files with 1 additions and 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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue