svn commit: r246948 - head/sys/boot/uboot/lib

Tim Kientzle kientzle at FreeBSD.org
Mon Feb 18 20:11:21 UTC 2013


Author: kientzle
Date: Mon Feb 18 20:11:20 2013
New Revision: 246948
URL: http://svnweb.freebsd.org/changeset/base/246948

Log:
  Clarify an error message.   The addresses here are
  really offsets within the primary mapped memory block
  (which may not start at address zero).

Modified:
  head/sys/boot/uboot/lib/copy.c

Modified: head/sys/boot/uboot/lib/copy.c
==============================================================================
--- head/sys/boot/uboot/lib/copy.c	Mon Feb 18 19:33:07 2013	(r246947)
+++ head/sys/boot/uboot/lib/copy.c	Mon Feb 18 20:11:20 2013	(r246948)
@@ -66,7 +66,7 @@ uboot_vm_translate(vm_offset_t o) {
 		*/
 	}
 	if (o > size)
-		panic("Address 0x%08jX bigger than size 0x%08X\n",
+		panic("Address offset 0x%08jX bigger than size 0x%08X\n",
 		      (intmax_t)o, size);
 	return (void *)(start + o);
 }


More information about the svn-src-head mailing list