diff options
author | Renato Botelho <renato@netgate.com> | 2016-04-28 11:34:22 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-04-28 11:34:22 -0300 |
commit | d1ef4e7974b0b2817406da15fd95d9f836aa1912 (patch) | |
tree | be0fc739c69cdd44a57a5c6abe9001c070bf335f /lib | |
parent | 6f331e8a44f8f914e7cd1813a5e96d20c55891e5 (diff) | |
parent | 1d5d3749a4b560c02782ced59660844e31c631a9 (diff) | |
download | FreeBSD-src-d1ef4e7974b0b2817406da15fd95d9f836aa1912.zip FreeBSD-src-d1ef4e7974b0b2817406da15fd95d9f836aa1912.tar.gz |
Merge remote-tracking branch 'origin/stable/10' into devel
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/regex/engine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/regex/engine.c b/lib/libc/regex/engine.c index 589bb9d..72922f6 100644 --- a/lib/libc/regex/engine.c +++ b/lib/libc/regex/engine.c @@ -154,7 +154,7 @@ matcher(struct re_guts *g, int eflags) { const char *endp; - int i; + size_t i; struct match mv; struct match *m = &mv; const char *dp; @@ -1108,7 +1108,7 @@ print(struct match *m, FILE *d) { struct re_guts *g = m->g; - int i; + sopno i; int first = 1; if (!(m->eflags®_TRACE)) |