Skip to content

Commit 208eabb

Browse files
committed
Fix array assignment for cibuildwheel try 2
1 parent f4ecc6f commit 208eabb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

H2MM_C/H2MM_C.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3618,7 +3618,7 @@ cdef tuple cpath_ll_full(int64_t nbursts, int64_t *burst_sizes, int32_t **cdelta
36183618
PyMem_Free(ll)
36193619
return exception, loglik
36203620
temp = obtemp
3621-
loglik[i] = temp
3621+
loglik[i] = obtemp
36223622
ll[i] = <double*> temp.data
36233623
cdef int ret = pathloglik_path(nbursts, burst_sizes, cdeltas, cindexes, cstate_path, model, ll, ncore)
36243624
PyMem_Free(ll)

0 commit comments

Comments
 (0)