You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
target_os = "openbsd"
-----------------------------------
pub fn optimal_transfer_size(&self) -> i32 {
| self.0.f_iosize
| ^^^^^^^^^^^^^^^ expected i32, found u32
help: you can convert an `u32` to `i32` and panic if the converted value wouldn't fit
-----------------------------------
target_os = "openbsd"
-----------------------------------
pub fn files_free(&self) -> i64 {
| self.0.f_ffree
| ^^^^^^^^^^^^^^ expected i64, found u64
help: you can convert an `u64` to `i64` and panic if the converted value wouldn't fit
-----------------------------------
please fix to:
self.0.f_iosize as i32
self.0.f_ffree as i64
Regards,
Louis Jasbetz
The text was updated successfully, but these errors were encountered:
Hi,
File:
sys/statfs.rs
please fix to:
Regards,
Louis Jasbetz
The text was updated successfully, but these errors were encountered: