diff options
author | jkim <jkim@FreeBSD.org> | 2012-05-19 05:44:32 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2012-05-19 05:44:32 +0000 |
commit | 291c27508808bb5c9ab780eb971fe958491f1468 (patch) | |
tree | 83fbd480537714dcce335edc4aed3216f4e57816 /source/compiler/aslmessages.h | |
parent | eb364ef2c90291c41e896d265d93fe21e48d02a7 (diff) | |
download | FreeBSD-src-291c27508808bb5c9ab780eb971fe958491f1468.zip FreeBSD-src-291c27508808bb5c9ab780eb971fe958491f1468.tar.gz |
Import ACPICA 20120518.
Diffstat (limited to 'source/compiler/aslmessages.h')
-rw-r--r-- | source/compiler/aslmessages.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/source/compiler/aslmessages.h b/source/compiler/aslmessages.h index 45d50da..595e5f4 100644 --- a/source/compiler/aslmessages.h +++ b/source/compiler/aslmessages.h @@ -402,7 +402,7 @@ char *AslMessages [] = { }; -char *AslErrorLevel [ASL_NUM_REPORT_LEVELS] = { +const char *AslErrorLevel [ASL_NUM_REPORT_LEVELS] = { "Warning ", "Warning ", "Warning ", @@ -411,6 +411,15 @@ char *AslErrorLevel [ASL_NUM_REPORT_LEVELS] = { "Optimize" }; +const char *AslErrorLevelIde [ASL_NUM_REPORT_LEVELS] = { + "warning ", + "warning ", + "warning ", + "error ", + "remark ", + "optimize" +}; + #define ASL_ERROR_LEVEL_LENGTH 8 /* Length of strings above */ #endif /* ASL_EXCEPTIONS */ |