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=7f7eb8cc77e84dd03791f7317c38242e49760b49 commit 7f7eb8cc77e84dd03791f7317c38242e49760b49 Author: Guillem Jover <[email protected]> AuthorDate: Wed Aug 15 05:10:12 2018 +0200 libdpkg: Fix internerr format string Do not print filename which is going to be NULL. Fixes: commit 9f7e58acdf28043bce2dfaf24ba27bb878418658 --- lib/dpkg/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dpkg/file.c b/lib/dpkg/file.c index c6a756ae3..3b3511549 100644 --- a/lib/dpkg/file.c +++ b/lib/dpkg/file.c @@ -203,7 +203,7 @@ file_show(const char *filename) pid_t pid; if (filename == NULL) - internerr("file '%s' does not exist", filename); + internerr("filename is NULL"); pid = subproc_fork(); if (pid == 0) { -- Dpkg.Org's dpkg

