Skip to content

Commit

Permalink
- Fixed typo
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@10176 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Oct 20, 2011
1 parent 289d997 commit 771a3d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Compiler/Script/CevalScript.mo
Expand Up @@ -4181,9 +4181,9 @@ protected function errorLevelToValue
output Values.Value val;
algorithm
val := match severity
case Error.ERROR() then makeErrorEnumLiteral("ErrorLevel","syntax",1);
case Error.WARNING() then makeErrorEnumLiteral("ErrorLevel","grammar",2);
case Error.NOTIFICATION() then makeErrorEnumLiteral("ErrorLevel","translation",3);
case Error.ERROR() then makeErrorEnumLiteral("ErrorLevel","error",1);
case Error.WARNING() then makeErrorEnumLiteral("ErrorLevel","warning",2);
case Error.NOTIFICATION() then makeErrorEnumLiteral("ErrorLevel","notification",3);
else
equation
print("errorLevelToValue failed\n");
Expand Down

0 comments on commit 771a3d8

Please sign in to comment.