Skip to content

Commit 6db58dc

Browse files
committed
fix compilation
1 parent 8aec797 commit 6db58dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/hmacmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ _hacl_hmac_state_update(HACL_HMAC_state *state, uint8_t *buf, Py_ssize_t len)
494494
len -= UINT32_MAX;
495495
}
496496
#endif
497-
assert(Py_CHECK_HACL_UINT32_T_LENGTH(len));
497+
Py_CHECK_HACL_UINT32_T_LENGTH(len);
498498
return _hacl_hmac_state_update_once(state, buf, (uint32_t)len);
499499
}
500500

0 commit comments

Comments
 (0)