Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pwdx: use usize when parsing pid, not i32 #240

Merged
merged 1 commit into from
Oct 6, 2024
Merged
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
4 changes: 2 additions & 2 deletions src/uu/pwdx/src/pwdx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
let sys = System::new_all();

for pid_str in pids {
let pid = match pid_str.parse::<i32>() {
let pid = match pid_str.parse::<usize>() {
// PIDs start at 1, hence 0 is invalid
Ok(0) | Err(_) => {
return Err(USimpleError::new(
Expand All @@ -31,7 +31,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
Ok(pid) => pid,
};

match sys.process(Pid::from(pid as usize)) {
match sys.process(Pid::from(pid)) {
Some(process) => match process.cwd() {
Some(cwd) => println!("{pid}: {}", cwd.display()),
None => {
Expand Down
Loading