[PATCH] staging/android: fix more printk formats

From: Randy Dunlap
Date: Tue Feb 17 2009 - 12:38:25 EST


From: Randy Dunlap <randy.dunlap@xxxxxxxxxx>

Fix more android ram_console printk format warnings:

drivers/staging/android/ram_console.c:238: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
drivers/staging/android/ram_console.c:238: warning: format '%d' expects type 'int', but argument 4 has type 'size_t'

Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx>
---
drivers/staging/android/ram_console.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

--- linux-next-20090216.orig/drivers/staging/android/ram_console.c
+++ linux-next-20090216/drivers/staging/android/ram_console.c
@@ -235,8 +235,8 @@ static int __init ram_console_init(struc
ECC_BLOCK_SIZE) + 1) * ECC_SIZE;

if (ram_console_buffer_size > buffer_size) {
- pr_err("ram_console: buffer %p, invalid size %d, "
- "non-ecc datasize %d\n",
+ pr_err("ram_console: buffer %p, invalid size %zu, "
+ "non-ecc datasize %zu\n",
buffer, buffer_size, ram_console_buffer_size);
return 0;
}
--
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/