Skip to content

Commit 3327fe6

Browse files
committed
style: resolve lint error
1 parent be9fdef commit 3327fe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/zcopy/src/zcopy_ndarray.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @param offsetY starting index for Y
3232
*/
3333
void API_SUFFIX(c_zcopy_ndarray)( const CBLAS_INT N, const void *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, void *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY ) {
34-
double *x = (double *)X;
34+
const double *x = (double *)X;
3535
double *y = (double *)Y;
3636
CBLAS_INT ix;
3737
CBLAS_INT iy;

0 commit comments

Comments
 (0)