remove unnecessary conversion to string

time-shift
Houtan Bastani 2019-02-06 12:14:07 +01:00
parent de573890b7
commit f9239d5347
No known key found for this signature in database
GPG Key ID: 000094FB955BE169
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ function parsing_error(msg, line, node)
if nargin == 3 && ~isempty(node)
error('\nERROR encountered parsing `%s` in equation on line %d: %s\n', printNode(node), line, msg);
else
error('\nERROR encountered parsing of equation on line %d: %s\n', num2str(line), msg)
error('\nERROR encountered parsing of equation on line %d: %s\n', line, msg)
end
end