[Patch] btrfsck.c: bit-fields should be unsigned

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



bit-fields should be unsigned.

Signed-off-by: WANG Cong <wangcong@xxxxxxxxx>

---
diff --git a/btrfsck.c b/btrfsck.c
index 4a41e6d..1bf4064 100644
--- a/btrfsck.c
+++ b/btrfsck.c
@@ -60,10 +60,10 @@ struct extent_record {
 
 struct inode_backref {
 	struct list_head list;
-	int found_dir_item:1;
-	int found_dir_index:1;
-	int found_inode_ref:1;
-	int filetype:8;
+	unsigned int found_dir_item:1;
+	unsigned int found_dir_index:1;
+	unsigned int found_inode_ref:1;
+	unsigned int filetype:8;
 	int errors;
 	u64 dir;
 	u64 index;
@@ -83,13 +83,13 @@ struct inode_backref {
 
 struct inode_record {
 	struct list_head backrefs;
-	int checked:1;
-	int found_inode_item:1;
-	int found_dir_item:1;
-	int found_file_extent:1;
-	int found_csum_item:1;
-	int some_csum_missing:1;
-	int nodatasum:1;
+	unsigned int checked:1;
+	unsigned int found_inode_item:1;
+	unsigned int found_dir_item:1;
+	unsigned int found_file_extent:1;
+	unsigned int found_csum_item:1;
+	unsigned int some_csum_missing:1;
+	unsigned int nodatasum:1;
 	int errors;
 
 	u64 ino;
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Filesystem Development]     [Linux NFS]     [Linux NILFS]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux