Skip to content

Commit

Permalink
fix minor warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyan4973 committed Nov 26, 2020
1 parent 758ed17 commit 4c881f7
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions tests/collisions/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,7 @@ static void hexRaw(const void* buffer, size_t size)
}
}

void hexDisp(const void* buffer, size_t size)
{
hexRaw(buffer, size);
printf("\n");
}

static void printHash(const void* table, size_t n, Htype_e htype)
void printHash(const void* table, size_t n, Htype_e htype)
{
if ((htype == ht64) || (htype == ht32)){
uint64_t const h64 = ((const uint64_t*)table)[n];
Expand Down

0 comments on commit 4c881f7

Please sign in to comment.