mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use % for printf, not a dollar sign
This commit is contained in:
parent
0f0d65df7b
commit
08fa847abf
1 changed files with 1 additions and 1 deletions
|
|
@ -422,7 +422,7 @@ match_boot_info(EFI_LOADED_IMAGE *img __unused, char *boot_info, size_t bisz)
|
|||
free(kernel);
|
||||
text = efi_devpath_name(last_dp);
|
||||
if (text) {
|
||||
printf("Using Boot$04x %S + %s\n", boot_current, text,
|
||||
printf("Using Boot%04x %S + %s\n", boot_current, text,
|
||||
kernel);
|
||||
efi_free_devpath_name(text);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue