fix unused return value cargo warning

This commit is contained in:
travis laduke 2023-06-15 14:47:12 -07:00
parent 7ed5ea219d
commit 9430ff326f

View file

@ -89,7 +89,7 @@ pub extern "C" fn zeroidc_delete(ptr: *mut ZeroIDC) {
idc.stop();
unsafe {
Box::from_raw(ptr);
let _ = Box::from_raw(ptr);
}
}