From: Andrew Morton Date: Sat, 10 Sep 2016 10:34:17 +0000 (+1000) Subject: seq-proc-modify-seq_put_decimal_ll-to-take-a-const-char-not-char-fix X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=afeb732478d2bc840c874fbe08c0b02c66cf6bb6;p=deliverable%2Flinux.git seq-proc-modify-seq_put_decimal_ll-to-take-a-const-char-not-char-fix update vmstat_show(), per Joe Cc: Al Viro Cc: Andi Kleen Cc: Joe Perches Signed-off-by: Andrew Morton --- diff --git a/mm/vmstat.c b/mm/vmstat.c index 8857e0eee1e1..604f26a4f696 100644 --- a/mm/vmstat.c +++ b/mm/vmstat.c @@ -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; }