]> git.hungrycats.org Git - linux/commitdiff
pstore/ram: Fix printk format warning
authorRandy Dunlap <rdunlap@xenotime.net>
Sat, 4 Aug 2012 00:02:48 +0000 (17:02 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 3 Dec 2012 19:38:12 +0000 (11:38 -0800)
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 <rdunlap@xenotime.net>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/pstore/ram.c

index 0b311bc18916ab137c31d59aa2228c71a2a285c7..6a37656fc0a015b82f7ab0e84e5f49a1163bcacd 100644 (file)
@@ -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;