Re: [PATCH] ROMFS: printk format warnings

2007-03-20 Thread David Howells

Acked-By: David Howells [EMAIL PROTECTED]
-
To unsubscribe from this list: send the line unsubscribe linux-fsdevel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] ROMFS: printk format warnings

2007-03-19 Thread Randy Dunlap
From: Randy Dunlap [EMAIL PROTECTED]

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 [EMAIL PROTECTED]
---
 fs/romfs/super.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-2.6.21-rc3-mm2.orig/fs/romfs/super.c
+++ linux-2.6.21-rc3-mm2/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;
-
To unsubscribe from this list: send the line unsubscribe linux-fsdevel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html