mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Fixed a warning on freebdsd:
warning: unused import: `std::os::unix::fs::PermissionsExt`
This commit is contained in:
parent
238bcb9634
commit
cc8522a2db
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ use std::os::unix::fs;
|
||||||
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
use std::os::unix::fs::symlink as symlink_file;
|
use std::os::unix::fs::symlink as symlink_file;
|
||||||
#[cfg(unix)]
|
#[cfg(all(unix, not(target_os = "freebsd")))]
|
||||||
use std::os::unix::fs::PermissionsExt;
|
use std::os::unix::fs::PermissionsExt;
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
use std::os::windows::fs::symlink_file;
|
use std::os::windows::fs::symlink_file;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue