Print a pointer as pointer, it's really trivial.
authorPatrick Georgi <patrick.georgi@coresystems.de>
Fri, 3 Apr 2009 15:02:08 +0000 (15:02 +0000)
committerPatrick Georgi <patrick.georgi@coresystems.de>
Fri, 3 Apr 2009 15:02:08 +0000 (15:02 +0000)
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

src/stream/rom_stream.c

index 3c3614c60829aeffabfad0aca68711d20919a9a2..5def9195149c45439028c25f7cb1083318a55408 100644 (file)
@@ -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) {