Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f1e23eac authored by Adam Soutar's avatar Adam Soutar
Browse files

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
parent 93be8227
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");
+1 −1
Original line number Diff line number Diff line
@@ -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");