From 06bd1c1315468f08e24704c6482fa442dae52a7d Mon Sep 17 00:00:00 2001 From: zhanggy Date: Fri, 16 May 2025 11:27:48 +0800 Subject: [PATCH] chore: fix C lint errors (issue #6994) --- .../@stdlib/stats/base/dmeanstdevpn/examples/c/example.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dmeanstdevpn/examples/c/example.c b/lib/node_modules/@stdlib/stats/base/dmeanstdevpn/examples/c/example.c index 04fd1a1fd528..ac9a0fa03ae6 100644 --- a/lib/node_modules/@stdlib/stats/base/dmeanstdevpn/examples/c/example.c +++ b/lib/node_modules/@stdlib/stats/base/dmeanstdevpn/examples/c/example.c @@ -22,7 +22,7 @@ int main( void ) { // Create a strided array: - double x[] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 }; + const double x[] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 }; // Create an output array: double out[] = { 0.0, 0.0 };