From 48e8c3c36dc128969da26610d67d30c93155da5a Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Fri, 3 Apr 2009 15:02:08 +0000 Subject: Print a pointer as pointer, it's really trivial. Signed-off-by: Patrick Georgi Acked-by: Patrick Georgi git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4052 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/stream/rom_stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stream') diff --git a/src/stream/rom_stream.c b/src/stream/rom_stream.c index 3c3614c608..5def919514 100644 --- a/src/stream/rom_stream.c +++ b/src/stream/rom_stream.c @@ -94,7 +94,7 @@ int stream_init(void) * 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) { -- cgit v1.2.3