Skip to content

Commit d57b7ce

Browse files
committed
chore: fix C lint errors
1 parent 527d9e9 commit d57b7ce

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/number/float64/base/normalize/examples/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/number/float64/base/normalize/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ int main( void ) {
2727
double y;
2828
int i;
2929

30-
for ( i = 0; i < 8; i++ ) {
30+
for ( i = 0; i < 4; i++ ) {
3131
stdlib_base_float64_normalize( x[ i ], &y, &exp );
3232
printf( "%lf => y: %lf, exp: %" PRId32 "\n", x[ i ], y, exp );
3333
}

0 commit comments

Comments
 (0)