1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

Remove unused variable binding.

This commit is contained in:
Corey Farwell 2016-08-05 09:06:39 -04:00
parent 8fe3eac087
commit 01da600f71

View file

@ -68,7 +68,7 @@ mod chmod_rs {
_ => unreachable!()
})
}
Err(err) => Err(String::from("numeric parsing error"))
Err(_) => Err(String::from("numeric parsing error"))
}
}
}