Skip to content

Commit

Permalink
- Fix System.setVariableFilter
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@7617 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Jan 1, 2011
1 parent 78335a3 commit 463476f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Compiler/Util/System.mo
Expand Up @@ -277,7 +277,8 @@ end setDataPort;
public function setVariableFilter
input String variables;
output Boolean b;
external "C" b=setenv("sendDataFilter",variables,true) annotation(Library = "omcruntime");
algorithm
b := 0==setEnv("sendDataFilter",variables,true);
end setVariableFilter;

public function sendData2
Expand Down

0 comments on commit 463476f

Please sign in to comment.