Skip to content

Commit

Permalink
- Fixed a missing { in getExternalFunctionSpecification.
Browse files Browse the repository at this point in the history
- Also updated the test.


git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@11953 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adeas31 committed May 29, 2012
1 parent c49b9d2 commit 8021e9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/Script/Interactive.mo
Expand Up @@ -8476,7 +8476,7 @@ algorithm
strArguments = "\"" +& Dump.printExpLstStr(args) +& "\"";
strAnn1 = "\"" +& Dump.unparseAnnotationOption(0, ann1) +& "\"";
strAnn2 = "\"" +& Dump.unparseAnnotationOption(0, ann2) +& "\"";
str = stringAppendList({strLanguage, ",", strOutput, ",", strFuncName, ",", strArguments, ",", strAnn1, ",", strAnn2, "}"});
str = stringAppendList({"{", strLanguage, ",", strOutput, ",", strFuncName, ",", strArguments, ",", strAnn1, ",", strAnn2, "}"});
then
str;

Expand Down

0 comments on commit 8021e9f

Please sign in to comment.