Skip to content

Commit be9fdef

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/ccopy/src/ccopy_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_ccopy_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-
float *x = (float *)X;
34+
const float *x = (float *)X;
3535
float *y = (float *)Y;
3636
CBLAS_INT ix;
3737
CBLAS_INT iy;

0 commit comments

Comments
 (0)