Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage-utils:master commit in: /
Date: Sat, 25 Jan 2020 09:11:13
Message-Id: 1579943450.74cf35199330b4ab163c8a9b5261bba1708737d8.grobian@gentoo
1 commit: 74cf35199330b4ab163c8a9b5261bba1708737d8
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 25 09:10:50 2020 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 25 09:10:50 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=74cf3519
7
8 qpkg: fix syntax error
9
10 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
11
12 qpkg.c | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/qpkg.c b/qpkg.c
16 index 7929018..1535f05 100644
17 --- a/qpkg.c
18 +++ b/qpkg.c
19 @@ -309,7 +309,7 @@ qpkg_make(depend_atom *atom)
20 rmdir(tmpdir);
21
22 if (stat(buf, &st) == -1) {
23 - warnp("could not stat '%s': %s", buf strerror(errno));
24 + warnp("could not stat '%s': %s", buf, strerror(errno));
25 free(buf);
26 return 1;
27 }