mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Format string fix.
This commit is contained in:
parent
6202589a40
commit
21f181a06a
3 changed files with 3 additions and 3 deletions
|
|
@ -561,7 +561,7 @@ dofix(idesc, msg)
|
|||
if (idesc->id_type == DATA)
|
||||
direrror(idesc->id_number, msg);
|
||||
else
|
||||
pwarn(msg);
|
||||
pwarn("%s", msg);
|
||||
if (preen) {
|
||||
printf(" (SALVAGED)\n");
|
||||
idesc->id_fix = FIX;
|
||||
|
|
|
|||
|
|
@ -561,7 +561,7 @@ dofix(idesc, msg)
|
|||
if (idesc->id_type == DATA)
|
||||
direrror(idesc->id_number, msg);
|
||||
else
|
||||
pwarn(msg);
|
||||
pwarn("%s", msg);
|
||||
if (preen) {
|
||||
printf(" (SALVAGED)\n");
|
||||
idesc->id_fix = FIX;
|
||||
|
|
|
|||
|
|
@ -561,7 +561,7 @@ dofix(idesc, msg)
|
|||
if (idesc->id_type == DATA)
|
||||
direrror(idesc->id_number, msg);
|
||||
else
|
||||
pwarn(msg);
|
||||
pwarn("%s", msg);
|
||||
if (preen) {
|
||||
printf(" (SALVAGED)\n");
|
||||
idesc->id_fix = FIX;
|
||||
|
|
|
|||
Loading…
Reference in a new issue