This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f656230d0599005b4558423ae471e3e0364211b commit 1f656230d0599005b4558423ae471e3e0364211b Author: Guillem Jover <[email protected]> AuthorDate: Tue Jun 5 05:27:30 2018 +0200 dpkg-split: Fix format string to match variable declaration Warned-by: cppcheck --- dpkg-split/join.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dpkg-split/join.c b/dpkg-split/join.c index b5e14712e..305b9d41e 100644 --- a/dpkg-split/join.c +++ b/dpkg-split/join.c @@ -63,7 +63,7 @@ void reassemble(struct partinfo **partlist, const char *outputfile) { pi->filename, outputfile, err.str); close(fd_in); - printf("%d ",i+1); + printf("%u ", i + 1); } if (fsync(fd_out)) ohshite(_("unable to sync file '%s'"), outputfile); -- Dpkg.Org's dpkg

