diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2012-08-03 17:02:48 -0700 |
---|---|---|
committer | Anton Vorontsov <anton.vorontsov@linaro.org> | 2012-08-04 16:16:45 -0700 |
commit | 0427193b691edc81c846c7d0ebd2561cae8709d8 (patch) | |
tree | 5cdce9e06c938bb9b5f850a12b45871fe94410ea /fs/pstore | |
parent | a384f6411734e763daa4bae30e8ff170d7d4c3e2 (diff) | |
download | linux-0427193b691edc81c846c7d0ebd2561cae8709d8.tar.gz linux-0427193b691edc81c846c7d0ebd2561cae8709d8.tar.bz2 linux-0427193b691edc81c846c7d0ebd2561cae8709d8.zip |
pstore/ram: Fix printk format warning
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>
Diffstat (limited to 'fs/pstore')
-rw-r--r-- | fs/pstore/ram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c index bcd1bbd42598..fba8c7256929 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; |