Skip to content

Commit 29e7517

Browse files
committed
fixed compilation error
1 parent 27fd40c commit 29e7517

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

object-file.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1086,8 +1086,8 @@ int odb_source_loose_write_stream(struct odb_source *source,
10861086
} while (ret == Z_OK || ret == Z_BUF_ERROR);
10871087

10881088
if (stream.total_in != len + hdrlen)
1089-
die(_("write stream object %ld != %"PRIuMAX), stream.total_in,
1090-
(uintmax_t)len + hdrlen);
1089+
die(_("write stream object %"PRIuMAX" != %"PRIuMAX),
1090+
(uintmax_t)stream.total_in, (uintmax_t)len + hdrlen);
10911091

10921092
/*
10931093
* Common steps for write_loose_object and stream_loose_object to

0 commit comments

Comments
 (0)