Commit 688d750d authored by Thomas Bertschinger's avatar Thomas Bertschinger Committed by Kent Overstreet
Browse files

bcachefs: fix misplaced newline in __bch2_inode_unpacked_to_text()



before:

u64s 18 type inode_v3 0:1879048192:U32_MAX len 0 ver 0:   mode=40700
  flags= (15300000)
  journal_seq=4
  bi_size=0
  bi_sectors=0

  bi_version=0bi_atime=227064388944
  ...

after:

u64s 18 type inode_v3 0:1879048192:U32_MAX len 0 ver 0:   mode=40700
  flags= (15300000)
  journal_seq=4
  bi_size=0
  bi_sectors=0
  bi_version=0
  bi_atime=227064388944
  ...

Signed-off-by: default avatarThomas Bertschinger <tahbertschinger@gmail.com>
Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent 8aad8e1f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -552,8 +552,8 @@ static void __bch2_inode_unpacked_to_text(struct printbuf *out,
	prt_printf(out, "bi_sectors=%llu", inode->bi_sectors);
	prt_newline(out);

	prt_newline(out);
	prt_printf(out, "bi_version=%llu", inode->bi_version);
	prt_newline(out);

#define x(_name, _bits)						\
	prt_printf(out, #_name "=%llu", (u64) inode->_name);	\