Skip to content

Commit

Permalink
fix for type mismatch for java/android builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Voloshyn authored and eranrund committed May 14, 2020
1 parent 20e6fbb commit 8cac1fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mbedtls/src/pk/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const CUSTOM_PK_INFO: pk_info_t = {
sign_func: None,
verify_func: None,
get_bitlen: None,
name: b"\0" as *const u8 as *const i8,
name: b"\0" as *const u8 as *const mbedtls_sys::types::raw_types::c_char,
ctx_alloc_func: Some(alloc_custom_pk_ctx),
ctx_free_func: Some(free_custom_pk_ctx),
}
Expand Down

0 comments on commit 8cac1fd

Please sign in to comment.