Skip to content

Commit

Permalink
FIX: using unsigned integer
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Jan 31, 2022
1 parent c7e3d73 commit bb08b5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/n-crypt.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ static int myrand(void *rng_state, unsigned char *output, size_t len)
REBYTE *inBinary;
REBYTE *outBinary;
REBYTE hash[64];
REBINT inBytes;
REBINT outBytes;
REBCNT inBytes;
REBCNT outBytes;
REBINT err = 0;
mbedtls_md_type_t md_alg;

Expand Down

0 comments on commit bb08b5e

Please sign in to comment.