commit: 74cf35199330b4ab163c8a9b5261bba1708737d8
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 25 09:10:50 2020 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sat Jan 25 09:10:50 2020 +0000
URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=74cf3519
qpkg: fix syntax error
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
qpkg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qpkg.c b/qpkg.c
index 7929018..1535f05 100644
--- a/qpkg.c
+++ b/qpkg.c
@@ -309,7 +309,7 @@ qpkg_make(depend_atom *atom)
rmdir(tmpdir);
if (stat(buf, &st) == -1) {
- warnp("could not stat '%s': %s", buf strerror(errno));
+ warnp("could not stat '%s': %s", buf, strerror(errno));
free(buf);
return 1;
}