diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-08-16 09:59:05 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-08-16 09:59:05 +0000 |
commit | 4307860eb9b111db3a0690f1d876cf2180e89aa3 (patch) | |
tree | 164f37dfbed2fcc9d3780a365d79d83a79f91791 | |
parent | b5a3e2922f93d6d350a5102cfbbb0a0a8a842fee (diff) |
prototype mismatch for RMD160Update()
-rw-r--r-- | include/rmd160.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rmd160.h b/include/rmd160.h index 2452c2b0b7e..499a7658c8b 100644 --- a/include/rmd160.h +++ b/include/rmd160.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rmd160.h,v 1.3 1998/03/23 12:49:28 janjaap Exp $ */ +/* $OpenBSD: rmd160.h,v 1.4 1999/08/16 09:59:04 millert Exp $ */ /********************************************************************\ * @@ -37,7 +37,7 @@ typedef struct { void RMD160Init __P((RMD160_CTX *context)); void RMD160Transform __P((u_int32_t state[5], const u_int32_t block[16])); -void RMD160Update __P((RMD160_CTX *context, const u_char *data, u_int nbytes)); +void RMD160Update __P((RMD160_CTX *context, const u_char *data, u_int32_t nbytes)); void RMD160Final __P((u_char digest[20], RMD160_CTX *context)); char *RMD160End __P((RMD160_CTX *, char *)); char *RMD160File __P((char *, char *)); |