svn commit: r291876 - head/sys/boot/uboot/common

Garrett Cooper ngie at FreeBSD.org
Sat Dec 5 23:59:31 UTC 2015


Author: ngie
Date: Sat Dec  5 23:59:30 2015
New Revision: 291876
URL: https://svnweb.freebsd.org/changeset/base/291876

Log:
  Remove stray unescaped `%` in `Booting from ...` informational message
  
  PR: 204944
  MFC after: 1 week
  X-MFC with: r291164
  Reported by: David Binderman <dcb314 at hotmail.com>
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/sys/boot/uboot/common/main.c

Modified: head/sys/boot/uboot/common/main.c
==============================================================================
--- head/sys/boot/uboot/common/main.c	Sat Dec  5 22:56:57 2015	(r291875)
+++ head/sys/boot/uboot/common/main.c	Sat Dec  5 23:59:30 2015	(r291876)
@@ -488,7 +488,7 @@ main(void)
 	ldev = uboot_fmtdev(&currdev);
 	env_setenv("currdev", EV_VOLATILE, ldev, uboot_setcurrdev, env_nounset);
 	env_setenv("loaddev", EV_VOLATILE, ldev, env_noset, env_nounset);
-	printf("Booting from %s %\n", ldev);
+	printf("Booting from %s\n", ldev);
 
 	setenv("LINES", "24", 1);		/* optional */
 	setenv("prompt", "loader>", 1);


More information about the svn-src-head mailing list