Skip to content
Snippets Groups Projects
Commit 23e350ae authored by Tim Stadtmann's avatar Tim Stadtmann
Browse files

Fix tiny bug in ID-function

parent 8fbea7c5
Branches
Tags
No related merge requests found
...@@ -5,8 +5,8 @@ function id = ID(varargin) ...@@ -5,8 +5,8 @@ function id = ID(varargin)
% Setup constants % Setup constants
toolbox = 'RWTHMindstormsEV3'; toolbox = 'RWTHMindstormsEV3';
appendix = ''; appendix = '';
if nargin > 0 && ischar(varargin{0}) if nargin > 0 && ischar(varargin{1})
appendix = [':', varargin{0}]; appendix = [':', varargin{1}];
end end
% Get stack trace % Get stack trace
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment