Fix tidy checks

This commit is contained in:
Jeremy Soller 2016-12-12 15:57:19 -07:00
parent 7e7775ce7b
commit daaa231876

View File

@ -24,7 +24,8 @@ pub fn is_verbatim_sep(b: u8) -> bool {
pub fn parse_prefix(path: &OsStr) -> Option<Prefix> {
if let Some(path_str) = path.to_str() {
if let Some(_i) = path_str.find(':') {
//TODO: Redox specific prefix Some(Prefix::Verbatim(OsStr::new(&path_str[..i])))
// FIXME: Redox specific prefix
// Some(Prefix::Verbatim(OsStr::new(&path_str[..i])))
None
} else {
None