From 3772ab21ab433743cfe564230ae4e191ef0baad2 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Mon, 18 Feb 2013 20:11:20 +0000 Subject: [PATCH] Clarify an error message. The addresses here are really offsets within the primary mapped memory block (which may not start at address zero). --- sys/boot/uboot/lib/copy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/boot/uboot/lib/copy.c b/sys/boot/uboot/lib/copy.c index 71b7a94bbb9..3adf7ebf5bc 100644 --- a/sys/boot/uboot/lib/copy.c +++ b/sys/boot/uboot/lib/copy.c @@ -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); }