aboutsummaryrefslogtreecommitdiff
path: root/crypto/rand.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-04-05 19:03:29 -0700
committerSteven Fackler <[email protected]>2014-04-05 19:03:29 -0700
commite8b7975084a27f3854ec96ff2d957a7697469fbf (patch)
tree1dfd9239937e09ddca38b1281cdf30d1ce86867b /crypto/rand.rs
parentUpdate for visibility reform (diff)
downloadrust-openssl-e8b7975084a27f3854ec96ff2d957a7697469fbf.tar.xz
rust-openssl-e8b7975084a27f3854ec96ff2d957a7697469fbf.zip
Remove use of {:?}
Diffstat (limited to 'crypto/rand.rs')
-rw-r--r--crypto/rand.rs2
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);
}
}