We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fddfda commit 551e96bCopy full SHA for 551e96b
openssl/src/ts.rs
@@ -410,7 +410,7 @@ impl TsRespContext {
410
}
411
412
413
-foreign_type_and_impl_send_sync!{
+foreign_type_and_impl_send_sync! {
414
type CType = ffi::TS_TST_INFO;
415
fn drop = ffi::TS_TST_INFO_free;
416
pub struct TsTstInfo;
openssl/src/x509/mod.rs
@@ -2301,9 +2301,7 @@ impl X509AlgorithmRef {
2301
2302
impl PartialEq for X509AlgorithmRef {
2303
fn eq(&self, other: &Self) -> bool {
2304
- unsafe {
2305
- ffi::X509_ALGOR_cmp(self.as_ptr(), other.as_ptr()) == 0
2306
- }
+ unsafe { ffi::X509_ALGOR_cmp(self.as_ptr(), other.as_ptr()) == 0 }
2307
2308
2309
0 commit comments