diff --git a/lib/node_modules/@stdlib/strided/base/cmap/examples/c/example.c b/lib/node_modules/@stdlib/strided/base/cmap/examples/c/example.c index 9e1605681329..6789ca8092a5 100644 --- a/lib/node_modules/@stdlib/strided/base/cmap/examples/c/example.c +++ b/lib/node_modules/@stdlib/strided/base/cmap/examples/c/example.c @@ -31,7 +31,7 @@ static float complex scale( const float complex x ) { int main( void ) { // Create an input strided array: - float complex X[] = { 1.0+1.0*I, 2.0+2.0*I, 3.0+3.0*I, 4.0+4.0*I, 5.0+5.0*I, 6.0+6.0*I }; + const float complex X[] = { 1.0+1.0*I, 2.0+2.0*I, 3.0+3.0*I, 4.0+4.0*I, 5.0+5.0*I, 6.0+6.0*I }; // Create an output strided array: float complex Y[] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 };