svn commit: r336793 - head/stand/efi/loader

Warner Losh imp at FreeBSD.org
Fri Jul 27 22:35:08 UTC 2018


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


More information about the svn-src-head mailing list