mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 01:38:04 +00:00
Merge pull request #3393 from uutils/sylvestre-patch-1
mkdir.rs: Fix a clippy warning on clippy::ptr-arg
This commit is contained in:
commit
7d14961235
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ fn get_mode(matches: &ArgMatches, mode_had_minus_prefix: bool) -> Result<u32, St
|
|||
}
|
||||
|
||||
#[cfg(windows)]
|
||||
fn strip_minus_from_mode(_args: &mut Vec<String>) -> bool {
|
||||
fn strip_minus_from_mode(_args: &mut [String]) -> bool {
|
||||
false
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue