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

Commit daec05ff authored by Narayan Kamath's avatar Narayan Kamath Committed by Gerrit Code Review
Browse files

Merge "Track tinyxml2 upgrade."

parents 0353f423 fe2a04c7
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};
    }