Fix log_* formats which expect size_t but receive uint32_t.

This commit is contained in:
Iestyn Pryce
2017-05-19 22:31:56 +01:00
parent 87a76bf967
commit ecd07b18c1
8 changed files with 17 additions and 16 deletions

View File

@@ -53,7 +53,7 @@ double test_accuracy(char *filename) {
}
log_info("total=%zu\n", total);
log_info("total=%" PRIu32 "\n", total);
trie_destroy(label_ids);
@@ -85,4 +85,4 @@ int main(int argc, char **argv) {
double accuracy = test_accuracy(filename);
log_info("Done. Accuracy: %f\n", accuracy);
}
}