Skip to content

Commit b480ff0

Browse files
authored
chore: fix C lint errors
PR-URL: #7012 Closes: #6994 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent b51a457 commit b480ff0

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dmeanstdevpn/examples/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dmeanstdevpn/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
// Create a strided array:
25-
double x[] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 };
25+
const double x[] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 };
2626

2727
// Create an output array:
2828
double out[] = { 0.0, 0.0 };

0 commit comments

Comments
 (0)