summaryrefslogtreecommitdiff
path: root/openssl/src/string.rs
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2017-07-15 21:46:11 -0700
committerSteven Fackler <sfackler@gmail.com>2017-07-15 21:46:11 -0700
commitbcd0dcafcba31b7239faf1d582871f8fa83d69e9 (patch)
treef090be453d289f0f17ca4f6a3f458881e6f7091a /openssl/src/string.rs
parent5c2410c38af8ed2ee041081da84cd61dadc22e12 (diff)
downloadrust-openssl-bcd0dcafcba31b7239faf1d582871f8fa83d69e9.zip
Rustfmt
Diffstat (limited to 'openssl/src/string.rs')
-rw-r--r--openssl/src/string.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/openssl/src/string.rs b/openssl/src/string.rs
index 4a1d3479..0324d577 100644
--- a/openssl/src/string.rs
+++ b/openssl/src/string.rs
@@ -74,7 +74,9 @@ unsafe fn free(buf: *mut c_char) {
#[cfg(ossl110)]
unsafe fn free(buf: *mut c_char) {
- ::ffi::CRYPTO_free(buf as *mut c_void,
- concat!(file!(), "\0").as_ptr() as *const c_char,
- line!() as ::libc::c_int);
+ ::ffi::CRYPTO_free(
+ buf as *mut c_void,
+ concat!(file!(), "\0").as_ptr() as *const c_char,
+ line!() as ::libc::c_int,
+ );
}