Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/uu/id/src/id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
);
}

let groups = entries::get_groups_gnu(Some(gid)).unwrap();
let groups = entries::get_groups_gnu(None).unwrap();
let groups = if state.user_specified {
possible_pw.as_ref().map(|p| p.belongs_to()).unwrap()
} else {
Expand Down
4 changes: 2 additions & 2 deletions src/uu/numfmt/src/numfmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,9 @@
}

pub fn uu_app() -> Command {
Command::new(util_name())
Command::new(uucore::util_name())

Check failure on line 342 in src/uu/numfmt/src/numfmt.rs

View workflow job for this annotation

GitHub Actions / Style and Lint (ubuntu-24.04, unix)

ERROR: `cargo clippy`: unnecessary qualification (file:'src/uu/numfmt/src/numfmt.rs', line:342)

Check failure on line 342 in src/uu/numfmt/src/numfmt.rs

View workflow job for this annotation

GitHub Actions / Style and Lint (unix)

ERROR: `cargo clippy`: unnecessary qualification (file:'src/uu/numfmt/src/numfmt.rs', line:342)
.version(uucore::crate_version!())
.help_template(uucore::localized_help_template(util_name()))
.help_template(uucore::localized_help_template(uucore::util_name()))

Check failure on line 344 in src/uu/numfmt/src/numfmt.rs

View workflow job for this annotation

GitHub Actions / Style and Lint (ubuntu-24.04, unix)

ERROR: `cargo clippy`: unnecessary qualification (file:'src/uu/numfmt/src/numfmt.rs', line:344)

Check failure on line 344 in src/uu/numfmt/src/numfmt.rs

View workflow job for this annotation

GitHub Actions / Style and Lint (unix)

ERROR: `cargo clippy`: unnecessary qualification (file:'src/uu/numfmt/src/numfmt.rs', line:344)
.about(translate!("numfmt-about"))
.after_help(translate!("numfmt-after-help"))
.override_usage(format_usage(&translate!("numfmt-usage")))
Expand Down
Loading