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

Commit c2a005af authored by Narayan Kamath's avatar Narayan Kamath Committed by android-build-merger
Browse files

Merge "Track tinyxml2 upgrade."

am: daec05ff

Change-Id: I1152cbceb7dc48b34398a91967d592dc6930c8da
parents ba972854 daec05ff
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -255,8 +255,8 @@ ParsingResult parse(const char* path) {
    XMLDocument doc;
    doc.LoadFile(path);
    if (doc.Error()) {
        ALOGE("Failed to parse %s: Tinyxml2 error (%d): %s %s", path,
              doc.ErrorID(), doc.GetErrorStr1(), doc.GetErrorStr2());
        ALOGE("Failed to parse %s: Tinyxml2 error (%d): %s", path,
              doc.ErrorID(), doc.ErrorStr());
        return {nullptr, 0};
    }