From 3456a1f5f486ebca7389bfd3eb942cb107eee0e6 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Mon, 30 Sep 2013 19:20:02 -0700 Subject: [PATCH] Fix x86 build. Change-Id: I1f2d8189bec3d0e25d21ca7d7bd73fd02f8678e2 --- libc/bionic/statvfs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/bionic/statvfs.cpp b/libc/bionic/statvfs.cpp index 5d42aaa4d..743e4fd02 100644 --- a/libc/bionic/statvfs.cpp +++ b/libc/bionic/statvfs.cpp @@ -23,7 +23,7 @@ extern "C" int __fstatfs64(int, size_t, struct statfs*); #define ST_VALID 0x0020 -#if defined(__mips__) +#if !defined(__arm__) #define __val val #endif