mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Use same signedness for i and matched_c. This should make
newsyslog(8) WARNS=6 clean.
This commit is contained in:
parent
43cb852dc0
commit
ccb43d66aa
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue