Commit 5cabf85f authored by Joshua Nitschke's avatar Joshua Nitschke
Browse files

Fix clippy and rustfmt fails

parent cf738cff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ pub struct Asn1Tag(c_int);
impl Asn1Tag {
    /// Return the underlying c_int value
    pub fn as_c_int(&self) -> c_int {
        return self.0;
        self.0
    }

    /// Equivalent to OpenSSL Constant: V_ASN1_EOC
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ use std::ptr;
use std::slice;
use std::str;

use asn1::{Asn1BitStringRef, Asn1IntegerRef, Asn1ObjectRef, Asn1StringRef, Asn1TimeRef, Asn1Tag};
use asn1::{Asn1BitStringRef, Asn1IntegerRef, Asn1ObjectRef, Asn1StringRef, Asn1Tag, Asn1TimeRef};
use bio::MemBioSlice;
use conf::ConfRef;
use error::ErrorStack;