Skip to content

Commit

Permalink
- Fix for previous commit.
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@11803 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
perost committed Apr 26, 2012
1 parent 9cd50de commit e1994a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/BackEnd/XMLDump.mo
Expand Up @@ -1691,11 +1691,11 @@ algorithm
then ();
case (DAE.RCONST(real = rval))
equation
dumpStrMathMLNumberAttr(Util.xmlEscape(s),MathMLType,MathMLConstant);
dumpStrMathMLNumberAttr(realString(rval),MathMLType,MathMLReal);
then ();
case (DAE.SCONST(string = s))
equation
dumpStrMathMLNumberAttr(s,MathMLType,MathMLConstant);
dumpStrMathMLNumberAttr(Util.xmlEscape(s),MathMLType,MathMLConstant);
then ();
case (DAE.BCONST(bool = false))
equation
Expand Down

0 comments on commit e1994a7

Please sign in to comment.