diff --git a/lib/node_modules/@stdlib/number/float64/base/get-low-word/examples/c/example.c b/lib/node_modules/@stdlib/number/float64/base/get-low-word/examples/c/example.c index 74e6817e9d9b..4b33c605444f 100644 --- a/lib/node_modules/@stdlib/number/float64/base/get-low-word/examples/c/example.c +++ b/lib/node_modules/@stdlib/number/float64/base/get-low-word/examples/c/example.c @@ -21,7 +21,7 @@ #include int main( void ) { - double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 }; + const double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 }; uint32_t low; int i;