diff options
author | Spegelius <spegelius@gmail.com> | 2014-11-23 14:15:06 +0100 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2015-12-23 18:50:35 +0100 |
commit | d69ac2b18baf0b62f62e0f8b19a861efb7ce536a (patch) | |
tree | d67ff95ff3fb81732287d5cbf512e07eb94904a9 /exfat/mkfs/fat.c | |
parent | fuse: Update to 2.9.4 (diff) | |
download | android_bootable_recovery-d69ac2b18baf0b62f62e0f8b19a861efb7ce536a.tar android_bootable_recovery-d69ac2b18baf0b62f62e0f8b19a861efb7ce536a.tar.gz android_bootable_recovery-d69ac2b18baf0b62f62e0f8b19a861efb7ce536a.tar.bz2 android_bootable_recovery-d69ac2b18baf0b62f62e0f8b19a861efb7ce536a.tar.lz android_bootable_recovery-d69ac2b18baf0b62f62e0f8b19a861efb7ce536a.tar.xz android_bootable_recovery-d69ac2b18baf0b62f62e0f8b19a861efb7ce536a.tar.zst android_bootable_recovery-d69ac2b18baf0b62f62e0f8b19a861efb7ce536a.zip |
Diffstat (limited to 'exfat/mkfs/fat.c')
-rw-r--r-- | exfat/mkfs/fat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/exfat/mkfs/fat.c b/exfat/mkfs/fat.c index c70dc8637..d8dff2bee 100644 --- a/exfat/mkfs/fat.c +++ b/exfat/mkfs/fat.c @@ -26,12 +26,12 @@ #include "rootdir.h" #include <unistd.h> -static off_t fat_alignment(void) +static loff_t fat_alignment(void) { - return (off_t) 128 * get_sector_size(); + return (loff_t) 128 * get_sector_size(); } -static off_t fat_size(void) +static loff_t fat_size(void) { return get_volume_size() / get_cluster_size() * sizeof(cluster_t); } |