[PATCH -next] memrar: fix printk format warning

From: Randy Dunlap
Date: Fri Apr 30 2010 - 15:14:40 EST


From: Randy Dunlap <randy.dunlap@xxxxxxxxxx>

Fix printk format warning in memrar:
drivers/staging/memrar/memrar_handler.c:393: warning: format '%u' expects type 'unsigned int', but argument 4 has type 'size_t'

Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx>
Cc: Ossama Othman <ossama.othman@xxxxxxxxx>
---
drivers/staging/memrar/memrar_handler.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20100429.orig/drivers/staging/memrar/memrar_handler.c
+++ linux-next-20100429/drivers/staging/memrar/memrar_handler.c
@@ -390,7 +390,7 @@ static int memrar_init_rar_resources(cha
(unsigned long) low,
(unsigned long) high);

- pr_info("%s: BRAR[%d] size = %u KiB\n",
+ pr_info("%s: BRAR[%d] size = %zu KiB\n",
devname,
z,
rar->allocator->capacity / 1024);
--
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/