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

Commit 52957fe1 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Al Viro
Browse files

fs-writeback.c: bitfields should be unsigned



This fixes sparse noise:
  error: dubious one-bit signed bitfield

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 9a229683
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -42,9 +42,9 @@ struct wb_writeback_args {
	long nr_pages;
	long nr_pages;
	struct super_block *sb;
	struct super_block *sb;
	enum writeback_sync_modes sync_mode;
	enum writeback_sync_modes sync_mode;
	int for_kupdate:1;
	unsigned int for_kupdate:1;
	int range_cyclic:1;
	unsigned int range_cyclic:1;
	int for_background:1;
	unsigned int for_background:1;
};
};


/*
/*