index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2010-06-28 23:44:31 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-06-30 08:32:11 -0500 |
commit | 081e6a83608a28516abb326c1f66a07b691e1a32 (patch) | |
tree | f00be7ec4b086fd6aa4d684b192040fd2644f513 /src | |
parent | 630e7508ee44f2c41ba3f5d17c0c9ac15b15af3b (diff) |
-rw-r--r-- | src/pacman/pacman.c | 2 |
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 78407d67..a1b726dc 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -989,7 +989,7 @@ static int _parseconfig(const char *file, const char *givensection, file, linenum, value); break; default: - for(int gindex = 0; gindex < globbuf.gl_pathc; gindex++) { + for(size_t gindex = 0; gindex < globbuf.gl_pathc; gindex++) { pm_printf(PM_LOG_DEBUG, "config file %s, line %d: including %s\n", file, linenum, globbuf.gl_pathv[gindex]); _parseconfig(globbuf.gl_pathv[gindex], section, db); |