From f1ff21ac62a51f5ba8ca0821ea8a90f70957e25d Mon Sep 17 00:00:00 2001 From: Steve Block Date: Mon, 14 Jun 2010 17:34:04 +0100 Subject: 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 --- tools/aapt/StringPool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/aapt/StringPool.cpp') 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); } } -- cgit v1.2.3-59-g8ed1b