Skip to content

Commit

Permalink
Run rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Nov 11, 2019
1 parent c9b256a commit c26967c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/ffi/c.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

//! Implementation for C backends.
use std::alloc::{self, Layout};
use std::cmp;
Expand Down Expand Up @@ -399,10 +398,7 @@ mod c_backend {
mem::size_of::<mz_stream>() as c_int,
)
}
pub unsafe extern "C" fn mz_inflateInit2(
stream: *mut mz_stream,
window_bits: c_int,
) -> c_int {
pub unsafe extern "C" fn mz_inflateInit2(stream: *mut mz_stream, window_bits: c_int) -> c_int {
libz_sys::inflateInit2_(
stream,
window_bits,
Expand Down

0 comments on commit c26967c

Please sign in to comment.