diff options
| author | Steven Fackler <[email protected]> | 2015-01-23 10:21:08 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-01-23 10:21:08 -0800 |
| commit | 0a258a0a2128749be84448bdd6819eaff38d4c70 (patch) | |
| tree | 2b7327e35b5b90195431f36527ee77572be48066 /src/bn | |
| parent | Merge pull request #145 from gkoz/ffi_fixes (diff) | |
| download | rust-openssl-0a258a0a2128749be84448bdd6819eaff38d4c70.tar.xz rust-openssl-0a258a0a2128749be84448bdd6819eaff38d4c70.zip | |
Fix for upstream changes
Diffstat (limited to 'src/bn')
| -rw-r--r-- | src/bn/mod.rs | 2 |
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()) } |