Skip to content

Commit c96b1d8

Browse files
committed
auto merge of #8716 : andrew-d/rust/andrew-fix-warnings, r=alexcrichton
Small, but whatever 🎱
2 parents f997924 + 3479436 commit c96b1d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libextra/uuid.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ mod bench {
787787
pub fn parse_str(bh: &mut BenchHarness) {
788788
let s = "urn:uuid:F9168C5E-CEB2-4faa-B6BF-329BF39FA1E4";
789789
do bh.iter {
790-
let u = Uuid::parse_string(s);
790+
Uuid::parse_string(s);
791791
}
792792
}
793793
}

src/libstd/run.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ fn waitpid(pid: pid_t) -> int {
949949
#[cfg(test)]
950950
mod tests {
951951
use io;
952-
use libc::{c_int, uintptr_t};
952+
use libc::c_int;
953953
use option::{Option, None, Some};
954954
use os;
955955
use path::Path;

0 commit comments

Comments
 (0)