We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90e79d7 commit 3abbccfCopy full SHA for 3abbccf
src/uu/who/src/platform/unix.rs
@@ -238,14 +238,14 @@ impl Who {
238
}
239
utmpx::BOOT_TIME if self.need_boottime => self.print_boottime(&ut)?,
240
utmpx::NEW_TIME if self.need_clockchange => {
241
- self.print_clockchange(&ut)?
+ self.print_clockchange(&ut)?;
242
243
utmpx::INIT_PROCESS if self.need_initspawn => {
244
- self.print_initspawn(&ut)?
+ self.print_initspawn(&ut)?;
245
246
utmpx::LOGIN_PROCESS if self.need_login => self.print_login(&ut)?,
247
utmpx::DEAD_PROCESS if self.need_deadprocs => {
248
- self.print_deadprocs(&ut)?
+ self.print_deadprocs(&ut)?;
249
250
_ => {}
251
0 commit comments