Skip to content

Commit

Permalink
- minor correction to DAEQuery.mo (missed a ";") in when equations.
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@3694 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Oct 15, 2008
1 parent b30afe4 commit 8f6a762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/DAEQuery.mo
Expand Up @@ -147,7 +147,7 @@ algorithm
s2 = Exp.printExpStr(e2);
DAELow.WHEN_CLAUSE(condition, _, _) = listNth(wcLst,i);
s3 = Exp.printExpStr(condition);
res = Util.stringAppendList({"'when ", s3, " then " , s1," = ",s2," end when;'"});
res = Util.stringAppendList({"'when ", s3, " then " , s1," = ",s2,"; end when;'"});
then
res;
case (DAELow.RESIDUAL_EQUATION(exp = e),_)
Expand Down

0 comments on commit 8f6a762

Please sign in to comment.