Skip to content
Snippets Groups Projects
Verified Commit 1bb3b1cb authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Avoid using disp(sprintf()) construct.

parent 06bae2c3
No related branches found
No related tags found
No related merge requests found
Pipeline #9860 passed
......@@ -18,5 +18,5 @@ function command = setoption(command, optname, optvalue)
if isfield(command, optname)
command.(optname) = optvalue;
else
disp(sprintf('Option %s is unknown!', optname))
dprintf('Option %s is unknown!', optname)
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment