diff --git a/lib/node_modules/@stdlib/ndarray/base/assert/is-single-segment-compatible/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/ndarray/base/assert/is-single-segment-compatible/benchmark/c/benchmark.c index c0c61068cc9e..16d798a67c2d 100644 --- a/lib/node_modules/@stdlib/ndarray/base/assert/is-single-segment-compatible/benchmark/c/benchmark.c +++ b/lib/node_modules/@stdlib/ndarray/base/assert/is-single-segment-compatible/benchmark/c/benchmark.c @@ -97,10 +97,10 @@ static double benchmark( void ) { double t; int i; - int64_t shape[] = { 10, 10, 10 }; - int64_t strides[] = { 100, 10, 1 }; + const int64_t shape[] = { 10, 10, 10 }; + const int64_t strides[] = { 100, 10, 1 }; int64_t offset = 0; - int64_t ndims = 3; + const int64_t ndims = 3; t = tic(); for ( i = 0; i < ITERATIONS; i++ ) {