mirror of
https://github.com/opnsense/src.git
synced 2026-03-25 04:03:09 -04:00
add a missing format in a printf
Detected building with gcc 4.3.3 MFC after: 3 days
This commit is contained in:
parent
d88ff2a221
commit
91dbeea7b6
1 changed files with 1 additions and 1 deletions
|
|
@ -508,7 +508,7 @@ print_newports(ipfw_insn_u16 *cmd, int proto, int opcode)
|
|||
}
|
||||
sep = " ";
|
||||
for (i = F_LEN((ipfw_insn *)cmd) - 1; i > 0; i--, p += 2) {
|
||||
printf(sep);
|
||||
printf("%s", sep);
|
||||
print_port(proto, p[0]);
|
||||
if (p[0] != p[1]) {
|
||||
printf("-");
|
||||
|
|
|
|||
Loading…
Reference in a new issue