From 43d3c908090537e1d549de4b4d70f18a45a405f1 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 20 Sep 2022 13:40:56 +0200 Subject: [PATCH] include/mount-api-utils: use standard uint64_t Signed-off-by: Karel Zak --- include/mount-api-utils.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/mount-api-utils.h b/include/mount-api-utils.h index 98d9233ff1..db2df949db 100644 --- a/include/mount-api-utils.h +++ b/include/mount-api-utils.h @@ -99,12 +99,12 @@ static inline int move_mount(int from_dfd, const char *from_pathname, int to_dfd #endif #ifndef HAVE_STRUCT_MOUNT_ATTR -# include +# include struct mount_attr { - __u64 attr_set; - __u64 attr_clr; - __u64 propagation; - __u64 userns_fd; + uint64_t attr_set; + uint64_t attr_clr; + uint64_t propagation; + uint64_t userns_fd; }; #endif -- 2.47.2