aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2018-03-23 21:11:35 +0100
committerFabian Groffen <grobian@gentoo.org>2018-03-23 21:11:35 +0100
commitbbf9f4b708e1368a86c7978681e4a82604587fbc (patch)
tree0dfc5fe169d1423497b9fdacbba6de86c0b9e3cd /qdepends.c
parentqcheck: don't require ownership to be preserved by cp (diff)
downloadportage-utils-bbf9f4b708e1368a86c7978681e4a82604587fbc.tar.gz
portage-utils-bbf9f4b708e1368a86c7978681e4a82604587fbc.tar.bz2
portage-utils-bbf9f4b708e1368a86c7978681e4a82604587fbc.zip
fix some more signedness problems
Diffstat (limited to 'qdepends.c')
-rw-r--r--qdepends.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/qdepends.c b/qdepends.c
index 117ca71..d5a8ef5 100644
--- a/qdepends.c
+++ b/qdepends.c
@@ -560,8 +560,8 @@ int qdepends_main(int argc, char **argv)
depend_file = depend_files[0];
- while ((i = GETOPT_LONG(QDEPENDS, qdepends, "")) != -1) {
- switch (i) {
+ while ((ret = GETOPT_LONG(QDEPENDS, qdepends, "")) != -1) {
+ switch (ret) {
COMMON_GETOPTS_CASES(qdepends)
case 'd': depend_file = depend_files[0]; break;