[JFFS2] Fix printk format in jffs2_sum_write_data() error message.
authorDavid Woodhouse <dwmw2@infradead.org>
Tue, 16 May 2006 16:05:33 +0000 (17:05 +0100)
committerDavid Woodhouse <dwmw2@infradead.org>
Tue, 16 May 2006 16:05:33 +0000 (17:05 +0100)
fs/jffs2/summary.c: In function ‘jffs2_sum_write_data’:
fs/jffs2/summary.c:658: warning: format ‘%zd’ expects type ‘signed size_t’, but argument 4 has type ‘uint32_t’

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
fs/jffs2/summary.c

index 7b0ed77..48293c1 100644 (file)
@@ -655,7 +655,7 @@ static int jffs2_sum_write_data(struct jffs2_sb_info *c, struct jffs2_eraseblock
 
 
        if (ret || (retlen != infosize)) {
-               JFFS2_WARNING("Write of %d bytes at 0x%08x failed. returned %d, retlen %zu\n",
+               JFFS2_WARNING("Write of %u bytes at 0x%08x failed. returned %d, retlen %zd\n",
                        infosize, jeb->offset + c->sector_size - jeb->free_size, ret, retlen);
 
                c->summary->sum_size = JFFS2_SUMMARY_NOSUM_SIZE;