Skip to content

Commit 35df6a5

Browse files
authored
chore: fix C lint errors
PR-URL: #5354 Closes: #5347 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 9d4533a commit 35df6a5

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

+1-1
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[] = { 1.0, 3.14, 0.0, -0.0, 3.14e-308, 1.79e308, 1.0/0.0, 0.0/0.0 };
2626
int32_t exp;
2727
double y;
2828
int i;

0 commit comments

Comments
 (0)