diff options
author | Elliott Hughes <enh@google.com> | 2015-04-03 20:58:25 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-04-03 20:58:25 +0000 |
commit | dda35c37ead316d671c16a168ffdb9c4b3321e4d (patch) | |
tree | b0b7771766179dfe66a90ff13bb276385abcc21e /tools/aapt/XMLNode.cpp | |
parent | b7f9aca713dccde48ac040a1e6b8b7f281e910f0 (diff) | |
parent | 66d9451273c4a3775b6b63a0e4b7027bd2eae65d (diff) |
am 66d94512: am dbb5f5d6: am efcbaec1: Merge "Only Windows doesn\'t have %zd."
* commit '66d9451273c4a3775b6b63a0e4b7027bd2eae65d':
Only Windows doesn't have %zd.
Diffstat (limited to 'tools/aapt/XMLNode.cpp')
-rw-r--r-- | tools/aapt/XMLNode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/XMLNode.cpp b/tools/aapt/XMLNode.cpp index d2cd2d64246c..6902a3036ca4 100644 --- a/tools/aapt/XMLNode.cpp +++ b/tools/aapt/XMLNode.cpp @@ -18,7 +18,7 @@ // SSIZE: mingw does not have signed size_t == ssize_t. // STATUST: mingw does seem to redefine UNKNOWN_ERROR from our enum value, so a cast is necessary. -#if HAVE_PRINTF_ZD +#if !defined(_WIN32) # define SSIZE(x) x # define STATUST(x) x #else |