mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Oops, missed another printf() invocation with no format string.
This commit is contained in:
parent
32d9afb622
commit
3d3f014fd4
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ print(pr, bp)
|
|||
(void)printf(pr->fmt, (char *)bp);
|
||||
break;
|
||||
case F_TEXT:
|
||||
(void)printf(pr->fmt);
|
||||
(void)printf("%s", pr->fmt);
|
||||
break;
|
||||
case F_U:
|
||||
conv_u(pr, bp);
|
||||
|
|
|
|||
Loading…
Reference in a new issue