summaryrefslogtreecommitdiff
path: root/cmds-filesystem.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2017-10-26 20:44:55 +0200
committerDavid Sterba <dsterba@suse.com>2017-11-14 15:59:00 +0100
commitcce43f926200febfd8dedd60b774b32e540ab761 (patch)
treeb57d31d35a9f05940e85cac0ba55513905005ad7 /cmds-filesystem.c
parentb1dac5996bdfa0ba58ea2e545ce1f1af25b99a7d (diff)
btrfs-progs: don't use __u8 for fsid buffers
The underscore types are for ioctl structures and should not be used for regular code that does not need them. Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'cmds-filesystem.c')
-rw-r--r--cmds-filesystem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmds-filesystem.c b/cmds-filesystem.c
index 0f8e6cdc..7728430f 100644
--- a/cmds-filesystem.c
+++ b/cmds-filesystem.c
@@ -150,7 +150,7 @@ static int cmd_filesystem_df(int argc, char **argv)
return !!ret;
}
-static int match_search_item_kernel(__u8 *fsid, char *mnt, char *label,
+static int match_search_item_kernel(u8 *fsid, char *mnt, char *label,
char *search)
{
char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
@@ -678,7 +678,7 @@ static int cmd_filesystem_show(int argc, char **argv)
int type = 0;
char mp[PATH_MAX];
char path[PATH_MAX];
- __u8 fsid[BTRFS_FSID_SIZE];
+ u8 fsid[BTRFS_FSID_SIZE];
char uuid_buf[BTRFS_UUID_UNPARSED_SIZE];
unsigned unit_mode;
int found = 0;