seq-proc-modify-seq_put_decimal_ll-to-take-a-const-char-not-char-fix
authorAndrew Morton <akpm@linux-foundation.org>
Sat, 10 Sep 2016 10:34:17 +0000 (20:34 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Sat, 10 Sep 2016 10:34:17 +0000 (20:34 +1000)
update vmstat_show(), per Joe

Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/vmstat.c

index 8857e0eee1e1d8110211b15b2537dc1108269cb1..604f26a4f69678220f8cf41b88694d8355ab01b7 100644 (file)
@@ -1515,7 +1515,7 @@ static int vmstat_show(struct seq_file *m, void *arg)
        unsigned long off = l - (unsigned long *)m->private;
 
        seq_puts(m, vmstat_text[off]);
-       seq_put_decimal_ull(m, ' ', *l);
+       seq_put_decimal_ull(m, " ", *l);
        seq_putc(m, '\n');
        return 0;
 }
This page took 0.025647 seconds and 5 git commands to generate.