svn commit: r294284 - head/sys/boot/efi/boot1

Ed Maste emaste at FreeBSD.org
Mon Jan 18 18:41:11 UTC 2016


Author: emaste
Date: Mon Jan 18 18:41:09 2016
New Revision: 294284
URL: https://svnweb.freebsd.org/changeset/base/294284

Log:
  boot1: correct typo in error message

Modified:
  head/sys/boot/efi/boot1/boot1.c

Modified: head/sys/boot/efi/boot1/boot1.c
==============================================================================
--- head/sys/boot/efi/boot1/boot1.c	Mon Jan 18 18:27:21 2016	(r294283)
+++ head/sys/boot/efi/boot1/boot1.c	Mon Jan 18 18:41:09 2016	(r294284)
@@ -127,8 +127,8 @@ try_load(const boot_module_t *mod)
 
 	if ((status = bs->StartImage(loaderhandle, NULL, NULL)) !=
 	    EFI_SUCCESS) {
-		printf("Failed start image provided by %s (%lu)\n", mod->name,
-		    EFI_ERROR_CODE(status));
+		printf("Failed to start image provided by %s (%lu)\n",
+		    mod->name, EFI_ERROR_CODE(status));
 		return;
 	}
 }


More information about the svn-src-all mailing list