From patchwork Sat Jul 18 13:10:44 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: MTD: afs: fix build warning From: Russell King - ARM Linux X-Patchwork-Id: 29962 Message-Id: <20090718131044.GA4120@n2100.arm.linux.org.uk> To: David Woodhouse , linux-mtd@lists.infradead.org Date: Sat, 18 Jul 2009 14:10:44 +0100 drivers/mtd/afs.c:244: warning: format ‘%5d’ expects type ‘int’, but argument 4 has type ‘uint64_t’ Signed-off-by: Russell King --- drivers/mtd/afs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/afs.c b/drivers/mtd/afs.c index d072ca5..e29e81d 100644 --- a/drivers/mtd/afs.c +++ b/drivers/mtd/afs.c @@ -239,7 +239,7 @@ static int parse_afs_partitions(struct mtd_info *mtd, parts[idx].offset = img_ptr; parts[idx].mask_flags = 0; - printk(" mtd%d: at 0x%08x, %5dKB, %8u, %s\n", + printk(" mtd%d: at 0x%08x, %5lluKB, %8u, %s\n", idx, img_ptr, parts[idx].size / 1024, iis.imageNumber, str);