Skip to content

Commit ac3ae93

Browse files
authored
style: fix indentation
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 3543ad2 commit ac3ae93

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
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_stdev( lambda[ i % 100 ] );
107+
y = stdlib_base_dists_poisson_stdev( lambda[ i % 100 ] );
108108
if ( y != y ) {
109109
printf( "should not return NaN\n" );
110110
break;

0 commit comments

Comments
 (0)