From: Randy Dunlap Field width and precision must be of type int. fs/romfs/super.c:513: warning: field width should have type 'int', but argument 2 has type 'size_t' fs/romfs/super.c:513: warning: field precision should have type 'int', but argument 3 has type 'size_t' Signed-off-by: Randy Dunlap Acked-by: David Howells Signed-off-by: Andrew Morton --- fs/romfs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/romfs/super.c~romfs-printk-format-warnings fs/romfs/super.c --- a/fs/romfs/super.c~romfs-printk-format-warnings +++ a/fs/romfs/super.c @@ -510,7 +510,7 @@ static int romfs_fill_super(struct super len = strnlen(rsb->name, ROMFS_MAXFN); if (!silent) printk("ROMFS: Mounting image '%*.*s' through %s\n", - len, len, rsb->name, storage); + (int)len, (int)len, rsb->name, storage); kfree(rsb); rsb = NULL; _