Skip to content
Snippets Groups Projects
Commit 3aa01b69 authored by stratact's avatar stratact
Browse files

Remove pointless cast

parent a7a41560
No related branches found
No related tags found
1 merge request!127Update `platform::rawfile`
......@@ -33,7 +33,7 @@ impl RawFile {
impl Drop for RawFile {
fn drop(&mut self) {
let _ = close(self.0 as i32);
let _ = close(self.0);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment