diff options
author | Ed Heyl <edheyl@google.com> | 2010-03-05 11:08:58 -0800 |
---|---|---|
committer | Ed Heyl <edheyl@google.com> | 2010-03-05 11:24:35 -0800 |
commit | 65e185b51ec655518f1917418cd6192400ac439d (patch) | |
tree | 12b22850dbc7af459aeffe3a7abc23f17290ee1a | |
parent | f25269398e970f7c072893f71fdebe62afff785b (diff) | |
download | frameworks_base-65e185b51ec655518f1917418cd6192400ac439d.zip frameworks_base-65e185b51ec655518f1917418cd6192400ac439d.tar.gz frameworks_base-65e185b51ec655518f1917418cd6192400ac439d.tar.bz2 |
Change an aapt "warning" from "*** " to "**** " (from three to four stars).
"*** " (three stars and a space) is the 'magic make error string'; so this change makes it
easier to find the real issues/errors in build logs. Besides, other aapt messages are "**** ".
-rw-r--r-- | tools/aapt/ResourceTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/ResourceTable.cpp b/tools/aapt/ResourceTable.cpp index 0b531c2..1f9d152 100644 --- a/tools/aapt/ResourceTable.cpp +++ b/tools/aapt/ResourceTable.cpp @@ -2369,7 +2369,7 @@ ResourceTable::validateLocalizations(void) if (configSet.find(region) == configSet.end()) { if (configSet.count(defaultLocale) == 0) { fprintf(stdout, "aapt: warning: " - "*** string '%s' has no default or required localization " + "**** string '%s' has no default or required localization " "for '%s' in %s\n", String8(nameIter->first).string(), config.string(), |