diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-05-16 12:05:33 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-05-16 12:05:33 -0400 |
commit | c41ff6e5f38b02ff927d0d510e28dc1392bb4690 (patch) | |
tree | 338255986d719d68d18851416100f305548123b7 /fs/jffs2/summary.c | |
parent | 7d2beb135986477f53da77303356bd04329f8d0e (diff) |
[JFFS2] Fix printk format in jffs2_sum_write_data() error message.
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>
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 7b0ed77a4c35..48293c197f13 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 | |||
655 | 655 | ||
656 | 656 | ||
657 | if (ret || (retlen != infosize)) { | 657 | if (ret || (retlen != infosize)) { |
658 | JFFS2_WARNING("Write of %d bytes at 0x%08x failed. returned %d, retlen %zu\n", | 658 | JFFS2_WARNING("Write of %u bytes at 0x%08x failed. returned %d, retlen %zd\n", |
659 | infosize, jeb->offset + c->sector_size - jeb->free_size, ret, retlen); | 659 | infosize, jeb->offset + c->sector_size - jeb->free_size, ret, retlen); |
660 | 660 | ||
661 | c->summary->sum_size = JFFS2_SUMMARY_NOSUM_SIZE; | 661 | c->summary->sum_size = JFFS2_SUMMARY_NOSUM_SIZE; |