c_check_error() should take ctxt by value

newG2L
Salvatore Filippone 4 years ago
parent e60f4a2612
commit 4c91ab66f2

@ -49,7 +49,7 @@ extern "C" {
void psb_c_check_error(psb_c_ctxt *cctxt); void psb_c_check_error(psb_c_ctxt cctxt);
psb_i_t psb_c_error(); psb_i_t psb_c_error();
psb_i_t psb_c_clean_errstack(); psb_i_t psb_c_clean_errstack();
void psb_c_print_errmsg(); void psb_c_print_errmsg();

@ -136,7 +136,7 @@ contains
use psb_base_mod, only : psb_init, psb_ctxt_type, psb_check_error use psb_base_mod, only : psb_init, psb_ctxt_type, psb_check_error
implicit none implicit none
type(psb_c_object_type) :: cctxt type(psb_c_object_type), value :: cctxt
type(psb_ctxt_type), pointer :: ctxt type(psb_ctxt_type), pointer :: ctxt
integer :: info integer :: info

Loading…
Cancel
Save