diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-17 06:25:29 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-17 06:25:29 +0000 |
commit | 6269534d290ad453c1c51af056ea396430707d9c (patch) | |
tree | def4fa41d72543afa6297b8dcc53a858dcbe79d8 /lib/libc/hash | |
parent | 8469e9d79695027e5340449ab28b195e7ac98d16 (diff) |
Use u_int32_t not size_t.
Diffstat (limited to 'lib/libc/hash')
-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)); |