Skip to content

Commit 3abbccf

Browse files
author
Ivan Shanygin
committed
Applied clippy fixes
1 parent 90e79d7 commit 3abbccf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/uu/who/src/platform/unix.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,14 +238,14 @@ impl Who {
238238
}
239239
utmpx::BOOT_TIME if self.need_boottime => self.print_boottime(&ut)?,
240240
utmpx::NEW_TIME if self.need_clockchange => {
241-
self.print_clockchange(&ut)?
241+
self.print_clockchange(&ut)?;
242242
}
243243
utmpx::INIT_PROCESS if self.need_initspawn => {
244-
self.print_initspawn(&ut)?
244+
self.print_initspawn(&ut)?;
245245
}
246246
utmpx::LOGIN_PROCESS if self.need_login => self.print_login(&ut)?,
247247
utmpx::DEAD_PROCESS if self.need_deadprocs => {
248-
self.print_deadprocs(&ut)?
248+
self.print_deadprocs(&ut)?;
249249
}
250250
_ => {}
251251
}

0 commit comments

Comments
 (0)