Commit b25fd02a authored by Kent Overstreet's avatar Kent Overstreet

bcachefs: fix flag printing in journal_buf_to_text()

Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent aef7eecb
......@@ -77,9 +77,9 @@ static void bch2_journal_buf_to_text(struct printbuf *out, struct journal *j, u6
if (buf->write_started)
prt_str(out, "write_started ");
if (buf->write_allocated)
prt_str(out, "write allocated ");
prt_str(out, "write_allocated ");
if (buf->write_done)
prt_str(out, "write done");
prt_str(out, "write_done");
prt_newline(out);
printbuf_indent_sub(out, 2);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment