From f1e23eac8bcc604335d94c18ca1575bd2128f092 Mon Sep 17 00:00:00 2001 From: Adam Soutar Date: Thu, 3 Oct 2024 13:23:00 +0000 Subject: 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 --- tools/aapt2/Debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/aapt2/Debug.cpp') diff --git a/tools/aapt2/Debug.cpp b/tools/aapt2/Debug.cpp index 064b4617b0a2..2527dcd26382 100644 --- a/tools/aapt2/Debug.cpp +++ b/tools/aapt2/Debug.cpp @@ -445,7 +445,7 @@ void Debug::DumpResStringPool(const android::ResStringPool* pool, text::Printer* using namespace android; if (pool->getError() == NO_INIT) { - printer->Print("String pool is unitialized.\n"); + printer->Print("String pool is uninitialized.\n"); return; } else if (pool->getError() != NO_ERROR) { printer->Print("String pool is corrupt/invalid.\n"); -- cgit v1.2.3-59-g8ed1b