Skip to content

Commit

Permalink
UMFPACK: avoid -Wimplicit-function-declaration warnings (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiud authored Jan 1, 2023
1 parent 619472d commit 0ba0726
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion UMFPACK/Source/umf_cholmod.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,12 @@ int UMF_cholmod
user_info [2] = flops ;

CHOLMOD_free_factor (&L, &cm) ;
if (print_level > 0)
#ifndef NCHECK
if (print_level > 0)
{
CHOLMOD_print_common ("for UMFPACK", &cm) ;
}
#endif
CHOLMOD_finish (&cm) ;
return (TRUE) ;
#else
Expand Down

0 comments on commit 0ba0726

Please sign in to comment.