Browse Source

Fix compiler warnings.

OPENBSD_2_2
millert 27 years ago
parent
commit
b6f13a1a97
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      src/lib/libc/hash/rmd160.c

+ 5
- 2
src/lib/libc/hash/rmd160.c View File

@ -318,8 +318,11 @@ void RMD160Update(context, data, nbytes)
const u_char *data;
u_int32_t nbytes;
{
u_int32_t i, j, X[16];
u_int32_t X[16];
u_int32_t i;
#if BYTE_ORDER != LITTLE_ENDIAN
u_int32_t j;
#endif
(void)memset(X, 0, sizeof(X));
/* process all complete blocks */


Loading…
Cancel
Save