mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Cast unsigned variables to int
This commit is contained in:
parent
50be714be3
commit
00d9db0314
1 changed files with 1 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ p_flags(struct prompt *prompt, u_int32_t f, unsigned max)
|
|||
if (p->b_mask & f)
|
||||
*flags++ = p->b_val;
|
||||
*flags = '\0';
|
||||
prompt_Printf(prompt, "%-*.*s", max, max, name);
|
||||
prompt_Printf(prompt, "%-*.*s", (int)max, (int)max, name);
|
||||
}
|
||||
|
||||
static int route_nifs = -1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue