aboutsummaryrefslogtreecommitdiff
path: root/src/bn
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-01-23 10:21:08 -0800
committerSteven Fackler <[email protected]>2015-01-23 10:21:08 -0800
commit0a258a0a2128749be84448bdd6819eaff38d4c70 (patch)
tree2b7327e35b5b90195431f36527ee77572be48066 /src/bn
parentMerge pull request #145 from gkoz/ffi_fixes (diff)
downloadrust-openssl-0a258a0a2128749be84448bdd6819eaff38d4c70.tar.xz
rust-openssl-0a258a0a2128749be84448bdd6819eaff38d4c70.zip
Fix for upstream changes
Diffstat (limited to 'src/bn')
-rw-r--r--src/bn/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bn/mod.rs b/src/bn/mod.rs
index 84a57c4a..3a5f231e 100644
--- a/src/bn/mod.rs
+++ b/src/bn/mod.rs
@@ -438,7 +438,7 @@ impl BigNum {
}
}
-impl fmt::Show for BigNum {
+impl fmt::Debug for BigNum {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.to_dec_str())
}