Date: Fri, 27 Jul 2018 22:35:07 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r336793 - head/stand/efi/loader Message-ID: <201807272235.w6RMZ71p044669@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Fri Jul 27 22:35:07 2018 New Revision: 336793 URL: https://svnweb.freebsd.org/changeset/base/336793 Log: Use % for printf, not a dollar sign Modified: head/stand/efi/loader/main.c Modified: head/stand/efi/loader/main.c ============================================================================== --- head/stand/efi/loader/main.c Fri Jul 27 22:31:38 2018 (r336792) +++ head/stand/efi/loader/main.c Fri Jul 27 22:35:07 2018 (r336793) @@ -422,7 +422,7 @@ match_boot_info(EFI_LOADED_IMAGE *img __unused, char * 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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807272235.w6RMZ71p044669>