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

Commit 9f191118 authored by Donald Chai's avatar Donald Chai
Browse files

Include values in error message.

Bug: 112554546
Test: N/A
Change-Id: I56c468a9a4f162f6ce8079d6b4b61c5ec4b8f633
parent 7dd9fce6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -270,7 +270,8 @@ ContainerReader::ContainerReader(io::InputStream* in)
  }

  if (magic != kContainerFormatMagic) {
    error_ = "magic value doesn't match AAPT";
    error_ =
        StringPrintf("magic value is 0x%08x but AAPT expects 0x%08x", magic, kContainerFormatMagic);
    return;
  }