From 41e3ca0f41d2188e1064301e080cfb03d4eee84b Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Thu, 17 Nov 2016 19:47:39 -0800 Subject: [PATCH] Consistently use __u8 in format.h Signed-off-by: Zach Brown --- utils/src/format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/src/format.h b/utils/src/format.h index 611cd7a2..66c27847 100644 --- a/utils/src/format.h +++ b/utils/src/format.h @@ -97,7 +97,7 @@ struct scoutfs_buddy_root { */ struct scoutfs_key { __le64 inode; - u8 type; + __u8 type; __le64 offset; } __packed; @@ -119,7 +119,7 @@ struct scoutfs_key { #define SCOUTFS_MAX_ITEM_LEN 512 struct scoutfs_btree_root { - u8 height; + __u8 height; struct scoutfs_block_ref ref; } __packed;