Skip to content

Commit f40cc8a

Browse files
authored
chore: fix C lint errors
PR-URL: #7533 Closes: #7532 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 41ce4c9 commit f40cc8a

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/number/float64/base/get-low-word/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include <stdio.h>
2222

2323
int main( void ) {
24-
double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 };
24+
const double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 };
2525

2626
uint32_t low;
2727
int i;

0 commit comments

Comments
 (0)