diff options
| author | Steven Fackler <[email protected]> | 2014-04-05 19:03:29 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-04-05 19:03:29 -0700 |
| commit | e8b7975084a27f3854ec96ff2d957a7697469fbf (patch) | |
| tree | 1dfd9239937e09ddca38b1281cdf30d1ce86867b /crypto/rand.rs | |
| parent | Update for visibility reform (diff) | |
| download | rust-openssl-e8b7975084a27f3854ec96ff2d957a7697469fbf.tar.xz rust-openssl-e8b7975084a27f3854ec96ff2d957a7697469fbf.zip | |
Remove use of {:?}
Diffstat (limited to 'crypto/rand.rs')
| -rw-r--r-- | crypto/rand.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rand.rs b/crypto/rand.rs index 9ded0a76..9d1744a2 100644 --- a/crypto/rand.rs +++ b/crypto/rand.rs @@ -26,6 +26,6 @@ mod tests { #[test] fn test_rand_bytes() { let bytes = rand_bytes(32u); - println!("{:?}", bytes); + println!("{}", bytes); } } |