Skip to content

Commit e2af5b4

Browse files
author
zhanggy
committed
chore: fix C lint errors (issue #7532)
1 parent f344e9d commit e2af5b4

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)