summaryrefslogtreecommitdiff
path: root/tools/aapt/StringPool.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-06-14 17:34:04 +0100
committerSteve Block <steveblock@google.com>2010-06-25 11:02:15 +0100
commitf1ff21ac62a51f5ba8ca0821ea8a90f70957e25d (patch)
tree93b20482d80f3008a887e0c89eaa9a7cd3ad61ca /tools/aapt/StringPool.cpp
parentb5c49c8bb1e830ba934c7fbceec9409b89ead4a9 (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.cpp2
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);
}
}