Fix crash on older MATLAB introduced in previous commit

time-shift
Sébastien Villemot 2012-01-09 12:15:43 +01:00
parent dcaed91f66
commit 1259d4a603
1 changed files with 1 additions and 1 deletions

View File

@ -31,6 +31,6 @@ function [hasLicense] = user_has_matlab_license(toolbox)
if matlab_ver_less_than('7.12')
hasLicense = license('test', toolbox);
else
[hasLicense ~] = license('checkout',toolbox);
[hasLicense junk] = license('checkout',toolbox);
end
end