[OpenBIOS] [commit] r1282 - trunk/openbios-devel/libopenbios

repository service svn at openbios.org
Sun Mar 30 19:31:04 CEST 2014


Author: mcayland
Date: Sun Mar 30 19:31:03 2014
New Revision: 1282
URL: http://tracker.coreboot.org/trac/openbios/changeset/1282

Log:
OFMEM: tidy up "bad parameters" debugging message.

Display the values in lower-case hex to match the rest of the debugging code.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland at ilande.co.uk>

Modified:
   trunk/openbios-devel/libopenbios/ofmem_common.c

Modified: trunk/openbios-devel/libopenbios/ofmem_common.c
==============================================================================
--- trunk/openbios-devel/libopenbios/ofmem_common.c	Sun Mar 30 19:31:01 2014	(r1281)
+++ trunk/openbios-devel/libopenbios/ofmem_common.c	Sun Mar 30 19:31:03 2014	(r1282)
@@ -791,7 +791,7 @@
 	if( (phys & (PAGE_SIZE - 1)) || (virt & (PAGE_SIZE - 1)) || (size & (PAGE_SIZE - 1)) ) {
 
 		OFMEM_TRACE("ofmem_map: Bad parameters ("
-				FMT_plx " " FMT_ucellX " " FMT_ucellX ")\n",
+				FMT_plx " " FMT_ucellx " " FMT_ucellx ")\n",
 				phys, virt, size );
 
 		phys &= PAGE_MASK;



More information about the OpenBIOS mailing list