diff options
author | Stephen Hines <srhines@google.com> | 2014-12-02 19:25:18 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-12-02 19:25:19 +0000 |
commit | 0db9ea923309f514a3216826593b325cffcfbbbf (patch) | |
tree | 935aa4bfdc4d663e93907576cbba65a13e64a10d | |
parent | 7e7fc27cbc7208598473e875e8bee3e3dfeb6ff9 (diff) | |
parent | d134f252ef9887cffbab7890d82e715ae9ba3c33 (diff) | |
download | build-0db9ea923309f514a3216826593b325cffcfbbbf.zip build-0db9ea923309f514a3216826593b325cffcfbbbf.tar.gz build-0db9ea923309f514a3216826593b325cffcfbbbf.tar.bz2 |
Merge "Fix a preprocessor warning exposed by -Wundef."
-rw-r--r-- | core/combo/include/arch/target_linux-x86/AndroidConfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/combo/include/arch/target_linux-x86/AndroidConfig.h b/core/combo/include/arch/target_linux-x86/AndroidConfig.h index 6cdce4e..e294167 100644 --- a/core/combo/include/arch/target_linux-x86/AndroidConfig.h +++ b/core/combo/include/arch/target_linux-x86/AndroidConfig.h @@ -44,7 +44,7 @@ * agree on the same size. For desktop systems, use 64-bit values, * because some of our libraries (e.g. wxWidgets) expect to be built that way. */ -#if __LP64__ +#if defined(__LP64__) #define _FILE_OFFSET_BITS 64 #endif |