Skip to content

Commit c3ea40d

Browse files
fix: lint errors
1 parent 8b80f9e commit c3ea40d

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/chisquare/mean/benchmark/c

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/chisquare/mean/benchmark/c/benchmark.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ static double tic( void ) {
8383
* @return random number
8484
*/
8585
static double random_uniform( const double min, const double max ) {
86-
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
87-
return min + ( v*(max-min) );
86+
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
87+
return min + ( v*(max-min) );
8888
}
8989

9090
/**
@@ -94,7 +94,7 @@ static double random_uniform( const double min, const double max ) {
9494
*/
9595
static double benchmark( void ) {
9696
double elapsed;
97-
double k[ 100 ];
97+
double k[ 100 ];
9898
double y;
9999
double t;
100100
int i;

0 commit comments

Comments
 (0)