Skip to content

Commit ff4e0f7

Browse files
author
Kent Overstreet
committed
bcachefs: add missing newline in bch2_trans_updates_to_text()
Signed-off-by: Kent Overstreet <[email protected]>
1 parent 35a1150 commit ff4e0f7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

fs/bcachefs/btree_iter.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1487,8 +1487,10 @@ void bch2_trans_updates_to_text(struct printbuf *buf, struct btree_trans *trans)
14871487

14881488
for (struct jset_entry *e = trans->journal_entries;
14891489
e != btree_trans_journal_entries_top(trans);
1490-
e = vstruct_next(e))
1490+
e = vstruct_next(e)) {
14911491
bch2_journal_entry_to_text(buf, trans->c, e);
1492+
prt_newline(buf);
1493+
}
14921494

14931495
printbuf_indent_sub(buf, 2);
14941496
}

0 commit comments

Comments
 (0)