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

Commit 4f23aa95 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Track tinyxml2 upgrade."

parents fddc1453 cf7c2439
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -255,8 +255,8 @@ ParsingResult parseWithPath(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, path};
    }