]> git.hungrycats.org Git - linux/commitdiff
[PATCH] ppc64: Fix typo in zImage boot wrapper
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Fri, 22 Oct 2004 00:31:15 +0000 (17:31 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Fri, 22 Oct 2004 00:31:15 +0000 (17:31 -0700)
This patch fixes a typo in the zImage boot wrapper (incorrect printf).

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Matthew Dharm <mdharm@momenco.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
arch/ppc64/boot/main.c

index 6cf78020a6e95cbebbeff74fa50d700a3b7ece5d..561b2bb786519b3fd4c3c74f442d714c486f615f 100644 (file)
@@ -166,7 +166,7 @@ void start(unsigned long a1, unsigned long a2, void *promptr)
                gunzip((void *)vmlinux.addr, vmlinux.size,
                        (unsigned char *)vmlinuz.addr, &len);
                printf("done 0x%lx bytes\n\r", len);
-               printf("0x%x bytes of heap consumed, max in use 0x%\n\r",
+               printf("0x%x bytes of heap consumed, max in use 0x%x\n\r",
                       (unsigned)(avail_high - begin_avail), heap_max);
        } else {
                memmove((void *)vmlinux.addr,(void *)vmlinuz.addr,vmlinuz.size);