Skip to content

Commit f5fe3ed

Browse files
author
zhanggy
committed
chore: fix C lint errors (issue #7337)
1 parent d884d93 commit f5fe3ed

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/number/float64/base/from-words/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
int main( void ) {
2424
uint32_t high = 1074339512;
25-
uint32_t low[] = { 0, 10000, 1000000, 1374389535 };
25+
const uint32_t low[] = { 0, 10000, 1000000, 1374389535 };
2626

2727
double x;
2828
int i;

0 commit comments

Comments
 (0)