From 03e17bfa8d71c0feca01c94a820ce2f3736a35b8 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 4 Jul 2014 15:16:46 +0200 Subject: fatattr: use the standard type for 32-bit int Signed-off-by: Denys Vlasenko --- util-linux/fatattr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util-linux/fatattr.c') diff --git a/util-linux/fatattr.c b/util-linux/fatattr.c index 0f8d63268..5d933874a 100644 --- a/util-linux/fatattr.c +++ b/util-linux/fatattr.c @@ -34,8 +34,8 @@ #include "libbb.h" /* linux/msdos_fs.h says: */ #ifndef FAT_IOCTL_GET_ATTRIBUTES -# define FAT_IOCTL_GET_ATTRIBUTES _IOR('r', 0x10, __u32) -# define FAT_IOCTL_SET_ATTRIBUTES _IOW('r', 0x11, __u32) +# define FAT_IOCTL_GET_ATTRIBUTES _IOR('r', 0x10, uint32_t) +# define FAT_IOCTL_SET_ATTRIBUTES _IOW('r', 0x11, uint32_t) #endif /* Currently supports only the FAT flags, not the NTFS ones. -- cgit v1.2.3