Fix indentation

This commit is contained in:
Steven Fackler 2013-11-11 20:55:46 -08:00
parent be9948ba07
commit f42e9afc2c
1 changed files with 9 additions and 10 deletions

3
ffi.rs
View File

@ -13,8 +13,7 @@ pub type CRYPTO_EX_DATA = c_void;
pub type CRYPTO_EX_new = extern "C" fn(parent: *c_void, ptr: *c_void,
ad: *CRYPTO_EX_DATA, idx: c_int,
argl: c_long, argp: *c_void)
-> c_int;
argl: c_long, argp: *c_void) -> c_int;
pub type CRYPTO_EX_dup = extern "C" fn(to: *CRYPTO_EX_DATA,
from: *CRYPTO_EX_DATA, from_d: *c_void,
idx: c_int, argl: c_long, argp: *c_void)