Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0b947c3

Browse files
committed
Fix incorrect format placeholder
1 parent c8dd2cb commit 0b947c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/lib/simplehash.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,7 @@ SH_STAT(SH_TYPE * tb)
11111111
avg_collisions = 0;
11121112
}
11131113

1114-
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",
1114+
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",
11151115
tb->size, tb->members, fillfactor, total_chain_length, max_chain_length, avg_chain_length,
11161116
total_collisions, max_collisions, avg_collisions);
11171117
}

0 commit comments

Comments
 (0)