mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-09-15 03:26:18 +00:00
Merge pull request #5931 from cakebaker/ls_fix_unused_variable_warning_on_redox
ls: fix "unused variable" warning on Redox
This commit is contained in:
commit
f347168e24
1 changed files with 1 additions and 1 deletions
|
@ -2935,7 +2935,7 @@ fn display_group(metadata: &Metadata, config: &Config) -> String {
|
|||
}
|
||||
|
||||
#[cfg(target_os = "redox")]
|
||||
fn display_group(metadata: &Metadata, config: &Config) -> String {
|
||||
fn display_group(metadata: &Metadata, _config: &Config) -> String {
|
||||
metadata.gid().to_string()
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue