Skip to content

Commit f5cd27e

Browse files
gShahrKent Overstreet
authored andcommitted
bcachefs: Fix escape sequence in prt_printf
Remove backslash before format specifier. Ensure correct output. Signed-off-by: Gabriel Shahrouzi <[email protected]> Signed-off-by: Kent Overstreet <[email protected]>
1 parent 0af2f6b commit f5cd27e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/bcachefs/data_update.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ void bch2_data_update_inflight_to_text(struct printbuf *out, struct data_update
607607
prt_newline(out);
608608
printbuf_indent_add(out, 2);
609609
bch2_data_update_opts_to_text(out, m->op.c, &m->op.opts, &m->data_opts);
610-
prt_printf(out, "read_done:\t\%u\n", m->read_done);
610+
prt_printf(out, "read_done:\t%u\n", m->read_done);
611611
bch2_write_op_to_text(out, &m->op);
612612
printbuf_indent_sub(out, 2);
613613
}

0 commit comments

Comments
 (0)