Skip to content

Commit 93409ab

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 81acffa commit 93409ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/dsyr/src/dsyr_cblas.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ void API_SUFFIX(c_dsyr)( const CBLAS_LAYOUT order, const CBLAS_UPLO uplo, const
5959
void API_SUFFIX(c_dsyr_ndarray)( const CBLAS_UPLO uplo, const CBLAS_INT N, const float alpha, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, float *A, const CBLAS_INT strideA1, const CBLAS_INT strideA2, const CBLAS_INT offsetA ) {
6060
CBLAS_INT sx = strideX;
6161
X += stdlib_strided_min_view_buffer_index( N, strideX, offsetX ); // adjust array pointer
62-
CBLAS_INT shape[] = { N, N };
63-
CBLAS_INT strides[] = { strideA1, strideA2 };
62+
const shape[] = { N, N };
63+
const strides[] = { strideA1, strideA2 };
6464
A += stdlib_ndarray_min_view_buffer_index( 2, shape, strides, offsetA); // adjust array pointer
6565
if ( sx < 0 ) {
6666
sx = -sx;

0 commit comments

Comments
 (0)