Skip to content

Commit

Permalink
BUG: Fix type of p_ddof in signature of meanvar_core()
Browse files Browse the repository at this point in the history
  • Loading branch information
WarrenWeckesser committed Sep 21, 2024
1 parent 2e994a8 commit d7b7d34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meanvar/meanvar_gufunc.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ static void meanvar_core(
npy_intp n, // core dimension n
T *p_x, // pointer to first element of x, a strided 1-d array with n elements
npy_intp x_stride, // stride (in bytes) for elements of x
npy_long *p_ddof, // pointer to ddof
npy_intp *p_ddof, // pointer to ddof
U *p_out, // pointer to first element of out, a strided 1-d array with 2 elements
npy_intp out_stride // stride (in bytes) for elements of out
) {
Expand Down

0 comments on commit d7b7d34

Please sign in to comment.