diff --git a/frame/1d/invertd/bli_invertd.c b/frame/1d/invertd/bli_invertd.c index 502deb93d..2ccfd0022 100644 --- a/frame/1d/invertd/bli_invertd.c +++ b/frame/1d/invertd/bli_invertd.c @@ -40,6 +40,9 @@ // void bli_invertd( obj_t* x ) { + if ( bli_error_checking_is_enabled() ) + bli_invertd_check( x ); + bli_invertd_unb_var1( x ); } diff --git a/frame/1d/setd/bli_setd.c b/frame/1d/setd/bli_setd.c index 9f359e325..6414636c1 100644 --- a/frame/1d/setd/bli_setd.c +++ b/frame/1d/setd/bli_setd.c @@ -45,7 +45,7 @@ void bli_setd( obj_t* beta, obj_t beta_local; if ( bli_error_checking_is_enabled() ) - bli_scald_check( beta, x ); + bli_setd_check( beta, x ); // Use the datatype of x as the target type for beta (since we do // not assume mixed domain/type support is enabled).