diff options
author | Elliott Hughes <enh@google.com> | 2015-04-03 20:49:38 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-04-03 20:49:38 +0000 |
commit | 66d9451273c4a3775b6b63a0e4b7027bd2eae65d (patch) | |
tree | 58ea0a9e4d0919df4c93bf091e43c3fc6ddf1637 /tools/aapt/XMLNode.cpp | |
parent | ba88b692f1a489de308dcf5b5420a23166a94487 (diff) | |
parent | dbb5f5d6c4186e919fa51c019d56ea5fa8ff8b96 (diff) |
am dbb5f5d6: am efcbaec1: Merge "Only Windows doesn\'t have %zd."
* commit 'dbb5f5d6c4186e919fa51c019d56ea5fa8ff8b96':
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 b38b2eda4f73..9033cf72fb57 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 |