diff options
author | 1997-07-17 06:25:28 +0000 | |
---|---|---|
committer | 1997-07-17 06:25:28 +0000 | |
commit | 53c18f96e4177e69f3bedabbfeefed1c8347e318 (patch) | |
tree | 87dc419ed961c964dcc676a68f905692d691e29f /lib/libc | |
parent | Typo (diff) | |
download | wireguard-openbsd-53c18f96e4177e69f3bedabbfeefed1c8347e318.tar.xz wireguard-openbsd-53c18f96e4177e69f3bedabbfeefed1c8347e318.zip |
Use u_int32_t not size_t.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/hash/rmd160.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/hash/rmd160.c b/lib/libc/hash/rmd160.c index 95b65ed68f6..508008e6d52 100644 --- a/lib/libc/hash/rmd160.c +++ b/lib/libc/hash/rmd160.c @@ -316,10 +316,9 @@ void RMD160Transform(state, block) void RMD160Update(context, data, nbytes) RMD160_CTX *context; const u_char *data; - size_t nbytes; + u_int32_t nbytes; { - u_int32_t X[16]; - size_t i, j; + u_int32_t i, j, X[16]; (void)memset(X, 0, 16 * sizeof(u_int32_t)); |