mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix one more case where a string is passed via format argument instead.
Found by: clang
This commit is contained in:
parent
2e1bf57ca8
commit
7b2d603ef0
1 changed files with 1 additions and 1 deletions
|
|
@ -711,7 +711,7 @@ good:
|
|||
sbuf_printf(sb, "Unsupported Asus laptop: %s\n", Obj->String.Pointer);
|
||||
sbuf_finish(sb);
|
||||
|
||||
device_printf(dev, sbuf_data(sb));
|
||||
device_printf(dev, "%s", sbuf_data(sb));
|
||||
|
||||
sbuf_delete(sb);
|
||||
AcpiOsFree(Buf.Pointer);
|
||||
|
|
|
|||
Loading…
Reference in a new issue