From e1c8e27e848460f100d6cf8a648ad5c9b21533bb Mon Sep 17 00:00:00 2001 From: GeoDaoyu Date: Mon, 8 Dec 2025 11:13:25 +0800 Subject: [PATCH] chore: fix C lint errors (issue #8877) --- .../@stdlib/number/float64/base/set-low-word/README.md | 2 +- .../number/float64/base/set-low-word/examples/c/example.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/number/float64/base/set-low-word/README.md b/lib/node_modules/@stdlib/number/float64/base/set-low-word/README.md index 743373d8e023..8051773b2c89 100644 --- a/lib/node_modules/@stdlib/number/float64/base/set-low-word/README.md +++ b/lib/node_modules/@stdlib/number/float64/base/set-low-word/README.md @@ -174,7 +174,7 @@ void stdlib_base_float64_set_low_word( const uint32_t low, double *x ); #include int main( void ) { - uint32_t low[] = { 1374389535, 1374389545, 1374389555, 1374389565 }; + const uint32_t low[] = { 1374389535, 1374389545, 1374389555, 1374389565 }; double x = 3.14; int i; diff --git a/lib/node_modules/@stdlib/number/float64/base/set-low-word/examples/c/example.c b/lib/node_modules/@stdlib/number/float64/base/set-low-word/examples/c/example.c index 6da8bf5533a3..19973df6a552 100644 --- a/lib/node_modules/@stdlib/number/float64/base/set-low-word/examples/c/example.c +++ b/lib/node_modules/@stdlib/number/float64/base/set-low-word/examples/c/example.c @@ -21,7 +21,7 @@ #include int main( void ) { - uint32_t low[] = { 1374389535, 1374389545, 1374389555, 1374389565 }; + const uint32_t low[] = { 1374389535, 1374389545, 1374389555, 1374389565 }; double x = 3.14; int i;