Commit d1e8aa1d authored by Ian Jackson's avatar Ian Jackson
Browse files

tor-llcrypto: Replace a tiny bit of code duplication with a call

No functional change.
parent 7a4369e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ impl fmt::Display for RsaIdentity {
}
impl fmt::Debug for RsaIdentity {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "RsaIdentity {{ ${} }}", hex::encode(&self.id[..]))
        write!(f, "RsaIdentity {{ {} }}", self)
    }
}