From dd931864209eac0b4182d7a0d1ca965fcc3b8c03 Mon Sep 17 00:00:00 2001 From: Marco Nelissen Date: Mon, 13 Jul 2009 13:02:33 -0700 Subject: Format aapt warnings the same way as other compiler warnings ('warning: ' instead of 'WARNING: ' or 'WARNING ') --- tools/aapt/SourcePos.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/aapt/SourcePos.cpp') diff --git a/tools/aapt/SourcePos.cpp b/tools/aapt/SourcePos.cpp index 2761d182dec6..e2a921c060c5 100644 --- a/tools/aapt/SourcePos.cpp +++ b/tools/aapt/SourcePos.cpp @@ -86,7 +86,7 @@ ErrorPos::operator=(const ErrorPos& rhs) void ErrorPos::print(FILE* to) const { - const char* type = fatal ? "ERROR" : "WARNING"; + const char* type = fatal ? "error:" : "warning:"; if (this->line >= 0) { fprintf(to, "%s:%d: %s %s\n", this->file.string(), this->line, type, this->error.string()); -- cgit v1.2.3-59-g8ed1b