From d69ac2b18baf0b62f62e0f8b19a861efb7ce536a Mon Sep 17 00:00:00 2001 From: Spegelius Date: Sun, 23 Nov 2014 15:15:06 +0200 Subject: Changed off_t to loff_t - off_t is long, loff_t is long long (32bit vs. 64bit) - exfat requites 64 bit to support larger than 2GB fs Change-Id: I70293e45d7d6686317edc759092e738a2ebdd860 --- exfat/mkfs/uct.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'exfat/mkfs/uct.c') diff --git a/exfat/mkfs/uct.c b/exfat/mkfs/uct.c index d1deb2d02..14fa56fc7 100644 --- a/exfat/mkfs/uct.c +++ b/exfat/mkfs/uct.c @@ -23,12 +23,12 @@ #include "uct.h" #include "uctc.h" -static off_t uct_alignment(void) +static loff_t uct_alignment(void) { return get_cluster_size(); } -static off_t uct_size(void) +static loff_t uct_size(void) { return sizeof(upcase_table); } -- cgit v1.2.3