Commit 49840056 by Edward Thomson

diff: use size_t format

parent 3451c871
......@@ -336,7 +336,7 @@ static int format_binary(
"delta" : "literal";
const char *scan, *end;
git_buf_printf(pi->buf, "%s %lu\n", typename, inflatedlen);
git_buf_printf(pi->buf, "%s %" PRIuZ "\n", typename, inflatedlen);
pi->line.num_lines++;
for (scan = data, end = data + datalen; scan < end; ) {
......
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