diff options
author | 2015-04-03 20:16:21 +0000 | |
---|---|---|
committer | 2015-04-03 20:16:24 +0000 | |
commit | efcbaec14135c42f81e2a8f645584cf7cf542a02 (patch) | |
tree | 47038fdc39ec8491b35a3ad455e456e92775bf02 /tools/aapt/StringPool.cpp | |
parent | 64b0062a373102f83837faade20b469685758139 (diff) | |
parent | b12f2410c7bdbf90bd8a77b897846ee2763e3037 (diff) |
Merge "Only Windows doesn't have %zd."
Diffstat (limited to 'tools/aapt/StringPool.cpp')
-rw-r--r-- | tools/aapt/StringPool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/StringPool.cpp b/tools/aapt/StringPool.cpp index a18e9f191941..9908c44c6d1f 100644 --- a/tools/aapt/StringPool.cpp +++ b/tools/aapt/StringPool.cpp @@ -13,7 +13,7 @@ #include "ResourceTable.h" // SSIZE: mingw does not have signed size_t == ssize_t. -#if HAVE_PRINTF_ZD +#if !defined(_WIN32) # define ZD "%zd" # define ZD_TYPE ssize_t # define SSIZE(x) x |