Skip to content

Commit 111fa82

Browse files
committed
Auto merge of #27440 - dhuseby:fixing_freebsd_unused_import, r=alexcrichton
@alexcrichton fixes the build bot failures due to unused imports being treated as errors.
2 parents 8ce69e8 + ea12c02 commit 111fa82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/liblibc/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ pub mod types {
10021002
}
10031003
pub mod posix01 {
10041004
use types::common::c95::{c_void};
1005-
use types::common::c99::{uint8_t, uint32_t, int32_t};
1005+
use types::common::c99::{uint32_t, int32_t};
10061006
use types::os::arch::c95::{c_long, time_t};
10071007
use types::os::arch::posix88::{dev_t, gid_t, ino_t};
10081008
use types::os::arch::posix88::{mode_t, off_t};

0 commit comments

Comments
 (0)