Use same signedness for i and matched_c. This should make

newsyslog(8) WARNS=6 clean.
This commit is contained in:
Xin LI 2006-08-17 18:15:43 +00:00
parent 43cb852dc0
commit ccb43d66aa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=161412

View File

@ -890,7 +890,8 @@ get_worklist(char **files)
static void
expand_globs(struct conf_entry **work_p, struct conf_entry **glob_p)
{
int gmatch, gres, i;
int gmatch, gres;
size_t i;
char *mfname;
struct conf_entry *dupent, *ent, *firstmatch, *globent;
struct conf_entry *lastmatch;