aboutsummaryrefslogtreecommitdiffstats
path: root/fuse
diff options
context:
space:
mode:
authorSteve Kondik <shade@chemlab.org>2013-07-07 00:33:03 -0700
committerSteve Kondik <shade@chemlab.org>2013-07-07 18:26:18 -0700
commit454ec8915dff0002be280915f722107bdc4f7cd0 (patch)
tree153b88926cf2f620af2d5ddfc1b7c1d993f4ff91 /fuse
parente145047987782cdb5cf14a61ef3ec89f27b615fa (diff)
downloadandroid_external_exfat-454ec8915dff0002be280915f722107bdc4f7cd0.tar.gz
android_external_exfat-454ec8915dff0002be280915f722107bdc4f7cd0.tar.bz2
android_external_exfat-454ec8915dff0002be280915f722107bdc4f7cd0.zip
Handle 64-bit offsets correctly on Android
Diffstat (limited to 'fuse')
-rw-r--r--fuse/Android.mk4
-rw-r--r--fuse/main.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/fuse/Android.mk b/fuse/Android.mk
index cf7688f..ff35c78 100644
--- a/fuse/Android.mk
+++ b/fuse/Android.mk
@@ -9,7 +9,7 @@ LOCAL_C_INCLUDES += $(LOCAL_PATH) \
external/exfat/libexfat \
external/fuse/include \
external/fuse/android
-LOCAL_SHARED_LIBRARIES += libz libc libexfat libdl
-LOCAL_STATIC_LIBRARIES += libfuse
+LOCAL_SHARED_LIBRARIES += libz libc libdl
+LOCAL_STATIC_LIBRARIES += libexfat libfuse
include $(BUILD_EXECUTABLE)
diff --git a/fuse/main.c b/fuse/main.c
index 6d91fb5..191ae93 100644
--- a/fuse/main.c
+++ b/fuse/main.c
@@ -19,13 +19,13 @@
*/
#define FUSE_USE_VERSION 26
+#include <exfat.h>
#include <fuse.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <exfat.h>
#include <inttypes.h>
#include <limits.h>
#include <sys/types.h>