Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Dec 2015 23:59:30 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r291876 - head/sys/boot/uboot/common
Message-ID:  <201512052359.tB5NxUo5059759@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512052359.tB5NxUo5059759>