Skip to content

Commit

Permalink
[Matlab] Fix printing of error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Jan 29, 2016
1 parent 97697e0 commit 8b64b6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ void Application::Messages::addError(const std::string& r, const std::string& ms
"Procedure: " + r +
"\nError: " + msg + "\n");
} else {
errorMessage.push_back(msg);
errorMessage.push_back(r);
}
}

Expand Down

0 comments on commit 8b64b6f

Please sign in to comment.