Skip to content
Snippets Groups Projects
Commit e8ade6a1 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Fix display of Dynare command arguments

parent 8cadb2ac
No related branches found
No related tags found
No related merge requests found
......@@ -226,9 +226,10 @@ end
if preprocessoroutput
fprintf(['Starting Dynare (version ' dynare_version() ').\n']);
fprintf('Calling Dynare with arguments: ');
disp(varargin);
if isempty(varargin)
disp('none')
else
disp(varargin);
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment