Skip to content

Commit 48e437d

Browse files
committed
chore: fix C lint errors (issue #8156)
1 parent ba14b89 commit 48e437d

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/ndarray/base/assert/is-single-segment-compatible/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/ndarray/base/assert/is-single-segment-compatible/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* int8_t b = stdlib_ndarray_is_single_segment_compatible( STDLIB_NDARRAY_UINT8, ndims, shape, strides, offset );
5050
* // returns 1
5151
*/
52-
int8_t stdlib_ndarray_is_single_segment_compatible( enum STDLIB_NDARRAY_DTYPE dtype, int64_t ndims, int64_t *shape, int64_t *strides, int64_t offset ) {
52+
int8_t stdlib_ndarray_is_single_segment_compatible( enum STDLIB_NDARRAY_DTYPE dtype, int64_t ndims, int64_t *shape, const int64_t *strides, int64_t offset ) {
5353
int64_t tmp[2];
5454
int64_t nbytes;
5555
int64_t len;

0 commit comments

Comments
 (0)