Commit fd1e9c69 authored by Kent Overstreet's avatar Kent Overstreet Committed by Kent Overstreet

bcachefs: Fix an unitialized var warning in userspace

Signed-off-by: default avatarKent Overstreet <kent.overstreet@gmail.com>
parent 3756111d
...@@ -1141,7 +1141,7 @@ static void __bch2_write(struct closure *cl) ...@@ -1141,7 +1141,7 @@ static void __bch2_write(struct closure *cl)
struct bch_write_op *op = container_of(cl, struct bch_write_op, cl); struct bch_write_op *op = container_of(cl, struct bch_write_op, cl);
struct bch_fs *c = op->c; struct bch_fs *c = op->c;
struct write_point *wp; struct write_point *wp;
struct bio *bio; struct bio *bio = NULL;
bool skip_put = true; bool skip_put = true;
unsigned nofs_flags; unsigned nofs_flags;
int ret; int ret;
......
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