Remove pointless cast

This commit is contained in:
stratact
2018-05-24 13:27:24 -07:00
parent a7a415603f
commit 3aa01b6907
+1 -1
View File
@@ -33,7 +33,7 @@ impl RawFile {
impl Drop for RawFile {
fn drop(&mut self) {
let _ = close(self.0 as i32);
let _ = close(self.0);
}
}