Skip to content

Commit 4cc31f2

Browse files
authored
Fix error message in getcommon() in cholmod (#509)
* Fix function name in error message in getcommon() in cholmod
1 parent 1748989 commit 4cc31f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/cholmod.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ end
166166
function newcommon(; print = 0) # no printing from CHOLMOD by default
167167
common = finalizer(cholmod_finish, Ref(cholmod_common()))
168168
result = cholmod_start(common)
169-
@assert result == TRUE "failed to run `cholmod_l_start`!"
169+
@assert result == TRUE "failed to run `cholmod_start`!"
170170
common[].print = print
171171
common[].error_handler = @cfunction(error_handler, Cvoid, (Cint, Cstring, Cint, Cstring))
172172
return common

0 commit comments

Comments
 (0)