diff options
author | Steve Block <steveblock@google.com> | 2010-06-14 17:34:04 +0100 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2010-06-25 11:02:15 +0100 |
commit | f1ff21ac62a51f5ba8ca0821ea8a90f70957e25d (patch) | |
tree | 93b20482d80f3008a887e0c89eaa9a7cd3ad61ca /tools/aapt/StringPool.cpp | |
parent | b5c49c8bb1e830ba934c7fbceec9409b89ead4a9 (diff) |
Fixes a few minor problems with AAPT
- Fixes casting problems with stricter compilers
- Adds a couple of missing ifdef guards
This is a first step toward being able to generate APKs on the fly on the device.
Bug: 2766918
Change-Id: Icaaee5a4032afa313256add321b447443861dd85
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 a09cec05110b..e28bdff410b0 100644 --- a/tools/aapt/StringPool.cpp +++ b/tools/aapt/StringPool.cpp @@ -30,7 +30,7 @@ void printStringPool(const ResStringPool* pool) str = String8(pool->stringAt(s, &len)).string(); } - printf("String #%ld: %s\n", s, str); + printf("String #%d: %s\n", s, str); } } |