Skip to content

Commit 76605a1

Browse files
authored
style: fix indentation
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent e334716 commit 76605a1

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/poisson/kurtosis/benchmark/c

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/poisson/kurtosis/benchmark/c/benchmark.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ static double random_uniform( const double min, const double max ) {
9393
*/
9494
static double benchmark( void ) {
9595
double elapsed;
96-
double lambda[ 100 ];
96+
double lambda[ 100 ];
9797
double y;
9898
double t;
9999
int i;
@@ -104,7 +104,7 @@ static double benchmark( void ) {
104104

105105
t = tic();
106106
for ( i = 0; i < ITERATIONS; i++ ) {
107-
y = stdlib_base_dists_poisson_kurtosis( lambda[ i % 100 ] );
107+
y = stdlib_base_dists_poisson_kurtosis( lambda[ i % 100 ] );
108108
if ( y != y ) {
109109
printf( "should not return NaN\n" );
110110
break;

0 commit comments

Comments
 (0)