Skip to content

Commit 8d26d1d

Browse files
committed
pkey_ctx/set_rsa_keygen_bits: fix boring/aws-lc issue
1 parent c016d0b commit 8d26d1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openssl/src/pkey_ctx.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ impl<T> PkeyCtxRef<T> {
477477
unsafe {
478478
cvt(ffi::EVP_PKEY_CTX_set_rsa_keygen_bits(
479479
self.as_ptr(),
480-
bits as c_int,
480+
bits as i32,
481481
))?;
482482
}
483483

0 commit comments

Comments
 (0)