summaryrefslogtreecommitdiff
path: root/tools/aapt/StringPool.cpp
diff options
context:
space:
mode:
author Adam Soutar <adamsoutar@google.com> 2024-10-03 13:23:00 +0000
committer Adam Soutar <adamsoutar@google.com> 2024-10-03 13:26:28 +0000
commitf1e23eac8bcc604335d94c18ca1575bd2128f092 (patch)
treedd455236d87dd91632d75db29984838b8c7e2f34 /tools/aapt/StringPool.cpp
parent93be8227242cd87934a77fa9694291c88ed27a8e (diff)
Fix typo in AAPT2 error message
AAPT2 - and 1 - print "String pool is unitialized." I found this out when I saw the error and tried to look for it in Code Search only to get no results because it's spelled wrong. Change-Id: I66e2dcada0b1441d9f21aebded1ef95af09e7ac1 Flag: EXEMPT log only update
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 1af8d6f67bd3..b2e48bd74e8a 100644
--- a/tools/aapt/StringPool.cpp
+++ b/tools/aapt/StringPool.cpp
@@ -40,7 +40,7 @@ void strcpy16_htod(uint16_t* dst, const char16_t* src)
void printStringPool(const ResStringPool* pool)
{
if (pool->getError() == NO_INIT) {
- printf("String pool is unitialized.\n");
+ printf("String pool is uninitialized.\n");
return;
} else if (pool->getError() != NO_ERROR) {
printf("String pool is corrupt/invalid.\n");