about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAndrew Dunham <andrew@du.nham.ca>2013-08-23 17:24:09 -0400
committerAndrew Dunham <andrew@du.nham.ca>2013-08-23 17:26:52 -0400
commit347943640e9ea1db18d5a7401c0b50a44544599d (patch)
tree2db3019e3d416f809199a15b04a5e485e7986234 /src/libstd
parent2c0f9bd35493def5e23f0f43ddeba54da9d788b4 (diff)
downloadrust-347943640e9ea1db18d5a7401c0b50a44544599d.tar.gz
rust-347943640e9ea1db18d5a7401c0b50a44544599d.zip
Fix two small warnings
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/run.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/run.rs b/src/libstd/run.rs
index eeaee4c14a5..7fc2deff97d 100644
--- a/src/libstd/run.rs
+++ b/src/libstd/run.rs
@@ -949,7 +949,7 @@ fn waitpid(pid: pid_t) -> int {
 #[cfg(test)]
 mod tests {
     use io;
-    use libc::{c_int, uintptr_t};
+    use libc::c_int;
     use option::{Option, None, Some};
     use os;
     use path::Path;