Skip to content

Commit 725b57b

Browse files
authored
Merge pull request #418 from ehuss/ci-rustc
Get CI passing.
2 parents 718799c + ddca4c3 commit 725b57b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ git:
44

55
matrix:
66
include:
7-
- rust: 1.30.0
7+
- rust: 1.32.0
88
- rust: stable
99
- os: osx
1010
rust: stable

src/test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ pub fn realpath(original: &Path) -> io::Result<PathBuf> {
4444
pub fn realpath(original: &Path) -> io::Result<PathBuf> {
4545
use std::ffi::{CStr, OsString, CString};
4646
use std::os::unix::prelude::*;
47-
use libc::{self, c_char};
47+
use libc::c_char;
4848
extern {
4949
fn realpath(name: *const c_char, resolved: *mut c_char) -> *mut c_char;
5050
}

0 commit comments

Comments
 (0)