Skip to content

Commit

Permalink
chore: fix c test on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
tmontaigu committed Nov 27, 2024
1 parent 6b5f181 commit 12d5cce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tfhe/c_api_tests/test_shortint_pbs.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void test_shortint_pbs_2_bits_message(void) {
int encrypt_ok = shortint_client_key_encrypt(cks, in_val, &ct);
assert(encrypt_ok == 0);

size_t degree = -1;
uint64_t degree = -1;
int get_degree_ok = shortint_ciphertext_get_degree(ct, &degree);
assert(get_degree_ok == 0);

Expand Down

0 comments on commit 12d5cce

Please sign in to comment.