Skip to content

Commit 3fe0f2d

Browse files
committed
fix: benchmark.c file lint error
1 parent 69f50a7 commit 3fe0f2d

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ static double benchmark( void ) {
8989
t = tic();
9090
for ( i = 0; i < ITERATIONS; i++ ) {
9191
x = ( (float)rand() * 100000.0 ) - 0.0;
92-
y = stdlib_base_sqrtpi( x );
92+
y = stdlib_base_sqrtpif( x );
9393
if ( y != y ) {
9494
printf( "should not return NaN\n" );
9595
break;

0 commit comments

Comments
 (0)