summaryrefslogtreecommitdiff
path: root/tools/aapt/ResourceTable.cpp
diff options
context:
space:
mode:
author Elliott Hughes <enh@google.com> 2015-04-03 20:40:52 +0000
committer Android Git Automerger <android-git-automerger@android.com> 2015-04-03 20:40:52 +0000
commitdbb5f5d6c4186e919fa51c019d56ea5fa8ff8b96 (patch)
treeeb1fa3e66730e7f1d56f593777f4fea15fa761f3 /tools/aapt/ResourceTable.cpp
parente2e5b88e3ad2d18cde31f55a750e76d3d1b25185 (diff)
parentefcbaec14135c42f81e2a8f645584cf7cf542a02 (diff)
am efcbaec1: Merge "Only Windows doesn\'t have %zd."
* commit 'efcbaec14135c42f81e2a8f645584cf7cf542a02': Only Windows doesn't have %zd.
Diffstat (limited to 'tools/aapt/ResourceTable.cpp')
-rw-r--r--tools/aapt/ResourceTable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/ResourceTable.cpp b/tools/aapt/ResourceTable.cpp
index 941a2884e2a6..24f8168cf79e 100644
--- a/tools/aapt/ResourceTable.cpp
+++ b/tools/aapt/ResourceTable.cpp
@@ -20,7 +20,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