Merge "Fix unknown resource type error message" into qt-dev

am: dd76b346d4

Change-Id: I1af6f93d990a940876dbb65fe7b158ff6a81a576
This commit is contained in:
Ryan Mitchell
2019-04-30 11:05:27 -07:00
committed by android-build-merger

View File

@@ -693,7 +693,7 @@ bool ResourceParser::ParseResource(xml::XmlPullParser* parser,
// If the resource type was not recognized, write the error and return false.
diag_->Error(DiagMessage(out_resource->source)
<< "unknown resource type '" << parser->element_name() << "'");
<< "unknown resource type '" << resource_type << "'");
return false;
}