[coreboot] [commit] r5604 - trunk/src/arch/i386/boot

repository service svn at coreboot.org
Tue Jun 1 21:28:45 CEST 2010


Author: myles
Date: Tue Jun  1 21:28:45 2010
New Revision: 5604
URL: https://tracker.coreboot.org/trac/coreboot/changeset/5604

Log:
Fix a format string to keep the compiler happy.

Signed-off-by: Marc Bertens <mbertens at xs4all.nl>
Acked-by: Myles Watson <mylesgw at gmail.com>

Modified:
   trunk/src/arch/i386/boot/pirq_routing.c

Modified: trunk/src/arch/i386/boot/pirq_routing.c
==============================================================================
--- trunk/src/arch/i386/boot/pirq_routing.c	Tue Jun  1 21:25:31 2010	(r5603)
+++ trunk/src/arch/i386/boot/pirq_routing.c	Tue Jun  1 21:28:45 2010	(r5604)
@@ -64,7 +64,7 @@
 
 	rt_curr = (uint8_t*)addr;
 	rt_orig = (uint8_t*)&intel_irq_routing_table;
-	printk(BIOS_INFO, "Verifying copy of Interrupt Routing Table at 0x%08x... ", addr);
+	printk(BIOS_INFO, "Verifying copy of Interrupt Routing Table at 0x%08lx... ", addr);
 	for (i = 0; i < intel_irq_routing_table.size; i++) {
 		if (*(rt_curr + i) != *(rt_orig + i)) {
 			printk(BIOS_INFO, "failed\n");




More information about the coreboot mailing list