fatattr: use the standard type for 32-bit int
authorDenys Vlasenko <vda.linux@googlemail.com>
Fri, 4 Jul 2014 13:16:46 +0000 (15:16 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 4 Jul 2014 13:16:46 +0000 (15:16 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
util-linux/fatattr.c

index 0f8d632685f903c42b5ac8b8bf4bb09943692fcf..5d933874a62698575458ecc56740ec95b2c07591 100644 (file)
@@ -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.