X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/af4e7fd976a11e2749b1d4b6203d3f9298eae9f5..b5a0aec21ed839862f44bbd6e0c24c0e3a3433a4:/Resource.cpp?ds=sidebyside diff --git a/Resource.cpp b/Resource.cpp index 81db323..41ee88b 100644 --- a/Resource.cpp +++ b/Resource.cpp @@ -174,7 +174,7 @@ static sp getResourceFile(const sp& assets, bool makeIfNec static status_t parsePackage(const sp& assets, const sp& grp) { if (grp->getFiles().size() != 1) { - fprintf(stderr, "WARNING: Multiple AndroidManifest.xml files found, using %s\n", + fprintf(stderr, "warning: Multiple AndroidManifest.xml files found, using %s\n", grp->getFiles().valueAt(0)->getPrintableSource().string()); } @@ -419,7 +419,7 @@ static void checkForIds(const String8& path, ResXMLParser& parser) if (code == ResXMLTree::START_TAG) { ssize_t index = parser.indexOfAttribute(NULL, "id"); if (index >= 0) { - fprintf(stderr, "%s:%d: WARNING: found plain 'id' attribute; did you mean the new 'android:id' name?\n", + fprintf(stderr, "%s:%d: warning: found plain 'id' attribute; did you mean the new 'android:id' name?\n", path.string(), parser.getLineNumber()); } }