Skip to content

Commit

Permalink
Avoid redudant imports
Browse files Browse the repository at this point in the history
`cargo check` of nightly flags it, which is used for testing in
`libz-sys`.
  • Loading branch information
Byron committed Mar 14, 2024
1 parent 0a584f4 commit 20bbd74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ffi/c.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::os::raw::{c_int, c_uint, c_void};
use std::ptr;

use super::*;
use crate::mem::{self, FlushDecompress, Status};
use crate::mem;

#[derive(Default)]
pub struct ErrorMessage(Option<&'static str>);
Expand Down

0 comments on commit 20bbd74

Please sign in to comment.