diff options
| author | Kevin Mehall <km@kevinmehall.net> | 2015-05-05 23:49:23 +0000 |
|---|---|---|
| committer | Kevin Mehall <km@kevinmehall.net> | 2015-05-05 23:49:23 +0000 |
| commit | dff7676b7dc47505bb5d01d7ae4233d6c68bf694 (patch) | |
| tree | 0f0bdb9d22af9abe5df99adb9d7e4b76a9bc1f15 /src/libstd | |
| parent | 435622028f37085819843f4ac8938557501f0468 (diff) | |
| download | rust-dff7676b7dc47505bb5d01d7ae4233d6c68bf694.tar.gz rust-dff7676b7dc47505bb5d01d7ae4233d6c68bf694.zip | |
Fix MIPS build errors in libstd/os/linux/raw.rs
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/os/linux/raw.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/os/linux/raw.rs b/src/libstd/os/linux/raw.rs index adce5f22ebc..9589f4cf099 100644 --- a/src/libstd/os/linux/raw.rs +++ b/src/libstd/os/linux/raw.rs @@ -60,8 +60,8 @@ mod arch { #[cfg(any(target_arch = "mips", target_arch = "mipsel"))] mod arch { - use super::{dev_t, mode_t}; - use os::raw::c_long; + use super::mode_t; + use os::raw::{c_long, c_ulong}; use os::unix::raw::{gid_t, uid_t}; pub type blkcnt_t = i32; |
