Fix sparse warnings: fs/fs-writeback.c:45:26: error: dubious one-bit signed bitfield fs/fs-writeback.c:46:27: error: dubious one-bit signed bitfield fs/fs-writeback.c:47:29: error: dubious one-bit signed bitfield Signed-off-by: Bill Pemberton <wfp5p@xxxxxxxxxxxx> CC: linux-fsdevel@xxxxxxxxxxxxxxx --- fs/fs-writeback.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index 4b37f7c..24e85ce 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c @@ -42,9 +42,9 @@ struct wb_writeback_args { long nr_pages; struct super_block *sb; enum writeback_sync_modes sync_mode; - int for_kupdate:1; - int range_cyclic:1; - int for_background:1; + unsigned int for_kupdate:1; + unsigned int range_cyclic:1; + unsigned int for_background:1; }; /* -- 1.7.0.6 -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html