mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
Print a size_t as %u not %d.
Pointed out by: mike, des's tinderbox
This commit is contained in:
parent
6541d27cad
commit
815bee2f7b
1 changed files with 1 additions and 1 deletions
|
|
@ -279,7 +279,7 @@ add_sub(n, string, re, pm)
|
|||
regmatch_t *pm;
|
||||
{
|
||||
if (n > re->re_nsub)
|
||||
warnx("No subexpression %d", n);
|
||||
warnx("No subexpression %u", n);
|
||||
/* Subexpressions that did not match are
|
||||
* not an error. */
|
||||
else if (pm[n].rm_so != -1 &&
|
||||
|
|
|
|||
Loading…
Reference in a new issue