Skip to content

Commit b1f9463

Browse files
committed
fix compilation
1 parent 6db58dc commit b1f9463

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
@@ -463,8 +463,8 @@ _hacl_hmac_state_update_once(HACL_HMAC_state *state,
463463
uint8_t *buf, Py_ssize_t len)
464464
{
465465
assert(len >= 0);
466-
#ifndef NDEBUG
467466
Py_CHECK_HACL_UINT32_T_LENGTH(len);
467+
#ifndef NDEBUG
468468
hacl_errno_t code = Hacl_Streaming_HMAC_update(state, buf, (uint32_t)len);
469469
return _hacl_convert_errno(code);
470470
#else

0 commit comments

Comments
 (0)