diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2014-07-04 15:16:46 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2014-07-04 15:16:46 +0200 |
commit | 03e17bfa8d71c0feca01c94a820ce2f3736a35b8 (patch) | |
tree | b0e1f67413ca741e0d8f7b5455295819b2a7f39c /util-linux/fatattr.c | |
parent | 6e17766c3378b56a130830fe23e77a444ab5b7f9 (diff) | |
download | busybox-w32-03e17bfa8d71c0feca01c94a820ce2f3736a35b8.tar.gz busybox-w32-03e17bfa8d71c0feca01c94a820ce2f3736a35b8.tar.bz2 busybox-w32-03e17bfa8d71c0feca01c94a820ce2f3736a35b8.zip |
fatattr: use the standard type for 32-bit int
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/fatattr.c')
-rw-r--r-- | util-linux/fatattr.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ | |||
34 | #include "libbb.h" | 34 | #include "libbb.h" |
35 | /* linux/msdos_fs.h says: */ | 35 | /* linux/msdos_fs.h says: */ |
36 | #ifndef FAT_IOCTL_GET_ATTRIBUTES | 36 | #ifndef FAT_IOCTL_GET_ATTRIBUTES |
37 | # define FAT_IOCTL_GET_ATTRIBUTES _IOR('r', 0x10, __u32) | 37 | # define FAT_IOCTL_GET_ATTRIBUTES _IOR('r', 0x10, uint32_t) |
38 | # define FAT_IOCTL_SET_ATTRIBUTES _IOW('r', 0x11, __u32) | 38 | # define FAT_IOCTL_SET_ATTRIBUTES _IOW('r', 0x11, uint32_t) |
39 | #endif | 39 | #endif |
40 | 40 | ||
41 | /* Currently supports only the FAT flags, not the NTFS ones. | 41 | /* Currently supports only the FAT flags, not the NTFS ones. |