Author: oxygene Date: 2009-04-03 17:02:08 +0200 (Fri, 03 Apr 2009) New Revision: 4052
Modified: trunk/coreboot-v2/src/stream/rom_stream.c Log: Print a pointer as pointer, it's really trivial.
Signed-off-by: Patrick Georgi patrick.georgi@coresystems.de Acked-by: Patrick Georgi patrick.georgi@coresystems.de
Modified: trunk/coreboot-v2/src/stream/rom_stream.c =================================================================== --- trunk/coreboot-v2/src/stream/rom_stream.c 2009-04-03 14:04:06 UTC (rev 4051) +++ trunk/coreboot-v2/src/stream/rom_stream.c 2009-04-03 15:02:08 UTC (rev 4052) @@ -94,7 +94,7 @@ * long term, this has got to be fixed. */ dest = (unsigned char *) (16 * 1024 * 1024); - printk_debug("Uncompressing to RAM 0x%08lx ", dest); + printk_debug("Uncompressing to RAM %p ", dest); olen = uncompress((uint8_t *) rom_start, (uint8_t *)dest ); printk_debug(" olen = 0x%08lx done.\n", olen); if (olen != 0) {