Skip to content

Commit

Permalink
Merge pull request #398 from rust-lang/fix-imports
Browse files Browse the repository at this point in the history
Avoid redudant imports
  • Loading branch information
joshtriplett authored Mar 19, 2024
2 parents 0a584f4 + 20bbd74 commit ae78497
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 ae78497

Please sign in to comment.