Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
fedetft committed May 13, 2024
1 parent ea2175d commit 66fdd9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Projects/Sources/errorhandling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void errorMessage(char *errorMsg){
if(ModelicaErrorPtr)
// The pointer to ModelicaError has already been initialized by a previous
// call to setState_xx
ModelicaErrorPtr(msg.c_str());
ModelicaErrorPtr(msg.c_str());
else
{
// The pointer to ModelicaError is not yet initialized, so all we can do
Expand All @@ -67,7 +67,7 @@ void warningMessage(char *warningMsg){
if(ModelicaWarningPtr)
// The pointer to ModelicaError has already been initialized by a previous
// call to setState_xx
ModelicaWarningPtr(msg.c_str());
ModelicaWarningPtr(msg.c_str());
else
{
// The pointer to ModelicaError is not yet initialized, so all we can do
Expand Down

0 comments on commit 66fdd9a

Please sign in to comment.