diff options
author | Peter Eisentraut | 2021-09-29 06:12:23 +0000 |
---|---|---|
committer | Peter Eisentraut | 2021-09-29 06:12:23 +0000 |
commit | 0b947c3101d1d05c55531731d6b778f82cb21350 (patch) | |
tree | 7924861410c1166def306c9eddddd9fc5351addd | |
parent | c8dd2cb49405d2a39a714bd5adc31d39b8372a4e (diff) |
Fix incorrect format placeholder
-rw-r--r-- | src/include/lib/simplehash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index fdb3cf0a36..f6cbcd8c17 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -1111,7 +1111,7 @@ SH_STAT(SH_TYPE * tb) avg_collisions = 0; } - sh_log("size: " UINT64_FORMAT ", members: %u, filled: %f, total chain: %u, max chain: %u, avg chain: %f, total_collisions: %u, max_collisions: %i, avg_collisions: %f", + sh_log("size: " UINT64_FORMAT ", members: %u, filled: %f, total chain: %u, max chain: %u, avg chain: %f, total_collisions: %u, max_collisions: %u, avg_collisions: %f", tb->size, tb->members, fillfactor, total_chain_length, max_chain_length, avg_chain_length, total_collisions, max_collisions, avg_collisions); } |