Skip to content

Commit

Permalink
Corrected error in getBindingsStr (returned a '-' when field empty)
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@3638 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Filippo Donida committed Sep 14, 2008
1 parent cbec6e8 commit 0f42c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/DAE.mo
Expand Up @@ -3427,7 +3427,7 @@ algorithm
str;
case (((v as VAR(componentRef = cr,one = NONE)) :: (lst as (_ :: _))))
equation
s1 = "-,";
s1 = " ,";
s2 = getBindingsStr(lst);
str = stringAppend(s1, s2);
then
Expand Down

0 comments on commit 0f42c0c

Please sign in to comment.