Skip to content

Commit 930d012

Browse files
authored
chore: fix C lint errors
PR-URL: #7338 Closes: #7337 Reviewed-by: Athan Reines <[email protected]>
1 parent 5e6b517 commit 930d012

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)