diff options
author | Elliott Hughes <enh@google.com> | 2015-04-03 12:56:45 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-04-03 12:56:45 -0700 |
commit | b12f2410c7bdbf90bd8a77b897846ee2763e3037 (patch) | |
tree | 47038fdc39ec8491b35a3ad455e456e92775bf02 /tools/aapt/ResourceTable.cpp | |
parent | 64b0062a373102f83837faade20b469685758139 (diff) |
Only Windows doesn't have %zd.
Change-Id: I0e4b0fdc61641c5ecb724fd096bd2315dcf8ed4a
Diffstat (limited to 'tools/aapt/ResourceTable.cpp')
-rw-r--r-- | tools/aapt/ResourceTable.cpp | 2 |
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 |