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

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

Merge "Fix aapt2 badging return codes"

parents 61665726 28c88801
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2314,7 +2314,7 @@ std::unique_ptr<ManifestExtractor::Element> ManifestExtractor::Visit(xml::Elemen
int DumpManifest(LoadedApk* apk, DumpManifestOptions& options, text::Printer* printer,
                 IDiagnostics* diag) {
  ManifestExtractor extractor(apk, options);
  return extractor.Dump(printer, diag);
  return extractor.Dump(printer, diag) ? 0 : 1;
}

} // namespace aapt