diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-04-03 15:02:08 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-04-03 15:02:08 +0000 |
commit | 48e8c3c36dc128969da26610d67d30c93155da5a (patch) | |
tree | 56507cb61b5297a6f6f96e9640671e54e9a07dcf /src/stream | |
parent | 1b9a5c636e1bd42556fe6124229d75f3f16990f6 (diff) |
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>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4052 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/stream')
-rw-r--r-- | src/stream/rom_stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |