From f5fe3ed43fe5366634aaed658cb13c6d9da9f66b Mon Sep 17 00:00:00 2001 From: zhanggy Date: Fri, 13 Jun 2025 09:20:48 +0800 Subject: [PATCH] chore: fix C lint errors (issue #7337) --- .../@stdlib/number/float64/base/from-words/examples/c/example.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/number/float64/base/from-words/examples/c/example.c b/lib/node_modules/@stdlib/number/float64/base/from-words/examples/c/example.c index a5e1d76b4b3b..eaefd2218533 100644 --- a/lib/node_modules/@stdlib/number/float64/base/from-words/examples/c/example.c +++ b/lib/node_modules/@stdlib/number/float64/base/from-words/examples/c/example.c @@ -22,7 +22,7 @@ int main( void ) { uint32_t high = 1074339512; - uint32_t low[] = { 0, 10000, 1000000, 1374389535 }; + const uint32_t low[] = { 0, 10000, 1000000, 1374389535 }; double x; int i;