Skip to content

Commit

Permalink
CHOLMOD: matlab interface, remove spurious semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Dec 24, 2023
1 parent d49bb99 commit fb49d57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CHOLMOD/MATLAB/cholmod2.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void mexFunction
char str [LEN] ;
str [0] = '\0' ;
mxGetString (pargin [nargin-1], str, LEN) ;
if (str [0] == 's') ;
if (str [0] == 's')
{
dtype = CHOLMOD_SINGLE ;
mxdtype = mxSINGLE_CLASS ;
Expand Down

0 comments on commit fb49d57

Please sign in to comment.