Skip to content

Commit 6d4aa11

Browse files
authored
chore: fix C lint errors
PR-URL: #7843 Closes: #7842 Reviewed-by: Athan Reines <[email protected]>
1 parent 787e491 commit 6d4aa11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/snanvariancepn/src/snanvariancepn.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
*/
3939
static void snansumpw( const int64_t N, double *W, const float *X, const int64_t stride ) {
4040
int64_t ix;
41-
float *xp1;
42-
float *xp2;
41+
const float *xp1;
42+
const float *xp2;
4343
float sum;
4444
int64_t M;
4545
int64_t n;

0 commit comments

Comments
 (0)