X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/dadd9c1fc18bd05c84a357b56e945b5829b3bd95..46eefaf3a45d4f33b3032ff86388358ec6dc775e:/SourcePos.cpp diff --git a/SourcePos.cpp b/SourcePos.cpp index 2761d18..e2a921c 100644 --- a/SourcePos.cpp +++ b/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());