Use % for printf, not a dollar sign

This commit is contained in:
Warner Losh 2018-07-27 22:35:07 +00:00
parent 0f0d65df7b
commit 08fa847abf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=336793

View File

@ -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);
}