Skip to content

Commit

Permalink
- remove space characters
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@19669 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
lochel committed Mar 21, 2014
1 parent d807164 commit 899e0df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SimulationRuntime/c/util/division.c
Expand Up @@ -41,7 +41,7 @@ modelica_real division_error_equation_time(threadData_t *threadData, modelica_re
if(noThrow){
warningStreamPrintWithEquationIndexes(LOG_UTIL, 0, indexes, "solver will try to handle division by zero at time %.16g: %s", time, msg);
} else {
throwStreamPrintWithEquationIndexes(threadData, indexes, "division by zero at time %.16g, (a=%.16g) / (b = %.16g), where divisor b expression is: %s", time, a, b, msg);
throwStreamPrintWithEquationIndexes(threadData, indexes, "division by zero at time %.16g, (a=%.16g) / (b=%.16g), where divisor b expression is: %s", time, a, b, msg);
}
return b;
}
Expand Down

0 comments on commit 899e0df

Please sign in to comment.