Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ce0eac2a authored by Alexandru Moise's avatar Alexandru Moise Committed by David Sterba
Browse files

btrfs: Fixed dsize and last_off declarations



The return values of btrfs_item_offset_nr and btrfs_item_size_nr are of
type u32. To avoid mixing signed and unsigned integers we should also
declare dsize and last_off to be of type u32.

Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarAlexandru Moise <00moses.alexander00@gmail.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 0d51e28a
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -4940,8 +4940,8 @@ int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
{
{
	struct extent_buffer *leaf;
	struct extent_buffer *leaf;
	struct btrfs_item *item;
	struct btrfs_item *item;
	int last_off;
	u32 last_off;
	int dsize = 0;
	u32 dsize = 0;
	int ret = 0;
	int ret = 0;
	int wret;
	int wret;
	int i;
	int i;