fix: fixes a misspelled import for Windows

This commit is contained in:
Kevin K 2017-03-09 17:28:32 -05:00
parent 06e07ad8e6
commit d484da0d28
No known key found for this signature in database
GPG key ID: 17218E4B3692F01A

View file

@ -739,7 +739,7 @@ impl<'a, 'b> Parser<'a, 'b>
#[cfg(not(target_os = "windows"))]
use std::os::unix::ffi::OsStrExt;
#[cfg(target_os = "windows")]
use ossstringext::OsStrExt3;
use osstringext::OsStrExt3;
let n_bytes = n.as_bytes();
let h_bytes = OsStr::new(h).as_bytes();