From 5a82c7c7d1925f6f060a427f38ea17b53c6945f1 Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Fri, 16 Sep 2022 18:39:01 -0400 Subject: bcachefs: Fix sb_field_counters formatting We have counters with longer names now, so adjust the tabstop - also, make sure there's always a space printed between the name and the number. Signed-off-by: Kent Overstreet --- fs/bcachefs/counters.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fs/bcachefs/counters.c') diff --git a/fs/bcachefs/counters.c b/fs/bcachefs/counters.c index 745f856e6d3e..edd1b2537f48 100644 --- a/fs/bcachefs/counters.c +++ b/fs/bcachefs/counters.c @@ -36,7 +36,7 @@ void bch2_sb_counters_to_text(struct printbuf *out, struct bch_sb *sb, for (i = 0; i < nr; i++) { if (i < BCH_COUNTER_NR) - prt_printf(out, "%s", bch2_counter_names[i]); + prt_printf(out, "%s ", bch2_counter_names[i]); else prt_printf(out, "(unknown)"); -- cgit v1.2.3