diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2006-04-11 20:12:10 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@shinybook.infradead.org> | 2006-04-11 20:12:10 -0400 |
commit | fb6a82c94a9c69adfb6b9f6ce9f84be36884e471 (patch) | |
tree | 7109ae6ececc3aeee7449a2fb692472875a57c84 /fs/jffs2/summary.c | |
parent | b104513c74d972f09737017394c5abc7e0a6835d (diff) | |
download | op-kernel-dev-fb6a82c94a9c69adfb6b9f6ce9f84be36884e471.zip op-kernel-dev-fb6a82c94a9c69adfb6b9f6ce9f84be36884e471.tar.gz |
[PATCH] jffs2: fix printk warnings
Fix printk format warnings in jffs2.
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'fs/jffs2/summary.c')
-rw-r--r-- | fs/jffs2/summary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jffs2/summary.c b/fs/jffs2/summary.c index fb9cec6..3240d62 100644 --- a/fs/jffs2/summary.c +++ b/fs/jffs2/summary.c @@ -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 %zd bytes at 0x%08x failed. returned %d, retlen %zd\n", + JFFS2_WARNING("Write of %d bytes at 0x%08x failed. returned %d, retlen %zu\n", infosize, jeb->offset + c->sector_size - jeb->free_size, ret, retlen); c->summary->sum_size = JFFS2_SUMMARY_NOSUM_SIZE; |