Skip to content

Commit

Permalink
fix environment variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
schnorr committed Oct 15, 2024
1 parent f04808c commit a848e1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LAPACKE/src/lapacke_nancheck.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ int LAPACKE_get_nancheck( )
}

/* Check environment variable, once and only once */
env = getenv( "API_SUFFIX(LAPACKE_)NANCHECK" );
env = getenv( "LAPACKE_NANCHECK" );
if ( !env ) {
/* By default, NaN checking is enabled */
nancheck_flag = 1;
Expand Down

0 comments on commit a848e1e

Please sign in to comment.