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);
 }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to