Fix log_{debug,info} formats which expect size_t but receive int.

This commit is contained in:
Iestyn Pryce
2017-05-17 22:40:53 +01:00
parent 2a0fb69ae5
commit 87a76bf967
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ trie_t *trie_new_from_hash(khash_t(str_uint32) *hash) {
return NULL;
}
if (i % 100000 == 0 && i > 0) {
log_info("added %zu keys to trie\n", i);
log_info("added %d keys to trie\n", i);
}
}