Unverified Commit 896abfc8 by Edward Thomson Committed by GitHub

Merge pull request #5513 from libgit2/pks/tests-fix-32-bit-formatter

tests: merge: fix printf formatter on 32 bit arches
parents 51a2bc43 0cf9b666
......@@ -307,7 +307,7 @@ void test_merge_trees_renames__cache_recomputation(void)
*/
cl_git_pass(git_treebuilder_new(&builder, repo, NULL));
for (i = 0; i < 1000; i++) {
cl_git_pass(git_buf_printf(&path, "%"PRIuMAX".txt", i));
cl_git_pass(git_buf_printf(&path, "%"PRIuZ".txt", i));
cl_git_pass(git_treebuilder_insert(NULL, builder, path.ptr, &blob, GIT_FILEMODE_BLOB));
git_buf_clear(&path);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment