Skip to content

Commit

Permalink
- fix missing space
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@20835 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
lochel committed May 26, 2014
1 parent f8032de commit c8b9ce0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Compiler/BackEnd/BackendDAEOptimize.mo
Expand Up @@ -7791,7 +7791,7 @@ algorithm
false = List.isEmpty(varlst);

str = Util.if_(linear, "linear", "nonlinear");
Error.addCompilerNotification("Iteration variables of torn " +& str +& "equation system:\n" +& warnAboutVars(varlst));
Error.addCompilerNotification("Iteration variables of torn " +& str +& " equation system:\n" +& warnAboutVars(varlst));
listAllIterationVariables2(rest, inVars);
then ();

Expand Down
2 changes: 1 addition & 1 deletion Compiler/BackEnd/Initialization.mo
Expand Up @@ -751,7 +751,7 @@ algorithm
false = List.isEmpty(varlst);

str = Util.if_(linear, "linear", "nonlinear");
Debug.fcall(Flags.INITIALIZATION, Error.addCompilerWarning, "Iteration variables with default zero start attribute in torn " +& str +& "equation system:\n" +& warnAboutVars2(varlst));
Debug.fcall(Flags.INITIALIZATION, Error.addCompilerWarning, "Iteration variables with default zero start attribute in torn " +& str +& " equation system:\n" +& warnAboutVars2(varlst));
_ = warnAboutIterationVariablesWithDefaultZeroStartAttribute2(rest, inVars);
then true;

Expand Down

0 comments on commit c8b9ce0

Please sign in to comment.