[PATCH -next] nilfs2: fix printk format warning in page.c

From: Randy Dunlap
Date: Fri Apr 19 2013 - 17:19:37 EST


From: Randy Dunlap <rdunlap@xxxxxxxxxxxxx>

Fix printk format warning by using %zu for 'size_t':

fs/nilfs2/page.c:430:6: warning: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'size_t' [-Wformat]

Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx>
Cc: KONISHI Ryusuke <konishi.ryusuke@xxxxxxxxxxxxx>
Cc: linux-nilfs@xxxxxxxxxxxxxxx
---
fs/nilfs2/page.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20130419.orig/fs/nilfs2/page.c
+++ linux-next-20130419/fs/nilfs2/page.c
@@ -426,7 +426,7 @@ void nilfs_clear_dirty_page(struct page
lock_buffer(bh);
if (!silent) {
nilfs_warning(sb, __func__,
- "discard block %llu, size %lu",
+ "discard block %llu, size %zu",
(u64)bh->b_blocknr, bh->b_size);
}
clear_buffer_dirty(bh);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/