diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2025-04-17 12:42:47 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2025-04-17 12:51:03 -0400 |
commit | 0f59cc6a9eae6624f767cb74a405971de5919135 (patch) | |
tree | c9ce0b10a0d9f9d2f8544628fa8ebbc81baa539b /libbcachefs/debug.c | |
parent | 28039ec698d81cd4581ca47191ed13568932e402 (diff) |
Update bcachefs sources to 65456ba56b93 bcachefs: Fix struct with flex member ABI warning
Diffstat (limited to 'libbcachefs/debug.c')
-rw-r--r-- | libbcachefs/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbcachefs/debug.c b/libbcachefs/debug.c index 09b67279..8ad710bb 100644 --- a/libbcachefs/debug.c +++ b/libbcachefs/debug.c @@ -933,7 +933,7 @@ void bch2_fs_debug_init(struct bch_fs *c) if (IS_ERR_OR_NULL(bch_debug)) return; - if (!c->opts.single_device) + if (c->sb.multi_device) snprintf(name, sizeof(name), "%pU", c->sb.user_uuid.b); else strscpy(name, c->name, sizeof(name)); |