Commit ff4e0f7d authored by Kent Overstreet's avatar Kent Overstreet
Browse files

bcachefs: add missing newline in bch2_trans_updates_to_text()

parent 35a11506
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1487,8 +1487,10 @@ void bch2_trans_updates_to_text(struct printbuf *buf, struct btree_trans *trans)

	for (struct jset_entry *e = trans->journal_entries;
	     e != btree_trans_journal_entries_top(trans);
	     e = vstruct_next(e))
	     e = vstruct_next(e)) {
		bch2_journal_entry_to_text(buf, trans->c, e);
		prt_newline(buf);
	}

	printbuf_indent_sub(buf, 2);
}