]> www.infradead.org Git - users/jedix/linux-maple.git/commit
btrfs: send: only use boolean variables at process_recorded_refs()
authorFilipe Manana <fdmanana@suse.com>
Wed, 12 Feb 2025 11:31:59 +0000 (11:31 +0000)
committerDavid Sterba <dsterba@suse.com>
Tue, 18 Mar 2025 19:35:45 +0000 (20:35 +0100)
commit9453fe329789073d9a971de01da5902c32c1a01a
tree34740eb962b511f3880f3de3429db7a3f72042de
parent17f6a74d0b89092e38e3328b66eda1ab29a195d4
btrfs: send: only use boolean variables at process_recorded_refs()

We have several local variables at process_recorded_refs() that are used
as booleans, with some of them having a 'bool' type while two of them
having an 'int' type. Change this to make them all use the 'bool' type
which is more clear and to make everything more consistent.

Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/send.c