Skip to content

Commit 527d9e9

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

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
@@ -22,7 +22,7 @@
2222
#include <inttypes.h>
2323

2424
int main( void ) {
25-
double x[] = { 1.0, 3.14, 0.0, -0.0, 3.14e-308, 3.14e308, 1.0/0.0, 0.0/0.0 };
25+
const double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 };;
2626
int32_t exp;
2727
double y;
2828
int i;

0 commit comments

Comments
 (0)