From: Randy Dunlap Date: Sat, 4 Aug 2012 00:02:48 +0000 (-0700) Subject: pstore/ram: Fix printk format warning X-Git-Tag: v3.6.9~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce88af87d72ed98c4f3c989ec802e6ab2c1c856c;p=thirdparty%2Fkernel%2Fstable.git pstore/ram: Fix printk format warning commit 0427193b691edc81c846c7d0ebd2561cae8709d8 upstream. Fix printk format warning (on i386) in pstore: fs/pstore/ram.c:409:3: warning: format '%lu' expects type 'long unsigned int', but argument 2 has type 'size_t' Signed-off-by: Randy Dunlap Acked-by: Kees Cook Signed-off-by: Anton Vorontsov Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c index 0b311bc18916a..6a37656fc0a01 100644 --- a/fs/pstore/ram.c +++ b/fs/pstore/ram.c @@ -406,7 +406,7 @@ static int __devinit ramoops_probe(struct platform_device *pdev) goto fail_init_fprz; if (!cxt->przs && !cxt->cprz && !cxt->fprz) { - pr_err("memory size too small, minimum is %lu\n", + pr_err("memory size too small, minimum is %zu\n", cxt->console_size + cxt->record_size + cxt->ftrace_size); goto fail_cnt;