mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-28 09:37:10 -04:00
1836. [cleanup] Silence compiler warnings in hash_test.c
This commit is contained in:
parent
0398da5917
commit
68911dd38f
1 changed files with 3 additions and 3 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: hash_test.c,v 1.8.2.2 2005/03/16 13:42:19 marka Exp $ */
|
||||
/* $Id: hash_test.c,v 1.8.2.3 2005/03/16 19:49:18 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -29,12 +29,12 @@
|
|||
#include <isc/string.h>
|
||||
|
||||
static void
|
||||
print_digest(char *s, const char *hash, unsigned char *d,
|
||||
print_digest(unsigned char *s, const char *hash, unsigned char *d,
|
||||
unsigned int words)
|
||||
{
|
||||
unsigned int i, j;
|
||||
|
||||
printf("hash (%s) %s:\n\t", hash, s);
|
||||
printf("hash (%s) %s:\n\t", hash, (char *)s);
|
||||
for (i = 0 ; i < words ; i++) {
|
||||
printf(" ");
|
||||
for (j = 0 ; j < 4 ; j++)
|
||||
|
|
|
|||
Loading…
Reference in a new issue