Skip to content

Commit

Permalink
kill: print signals vertically
Browse files Browse the repository at this point in the history
  • Loading branch information
m-haisham committed Apr 7, 2024
1 parent a75b8a0 commit 0bc6d16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uu/kill/src/kill.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ fn print_signal(signal_name_or_value: &str) -> UResult<()> {
fn print_signals() {
for (idx, signal) in ALL_SIGNALS.iter().enumerate() {
if idx > 0 {
print!(" ");
println!();
}
print!("{signal}");
}
Expand Down

0 comments on commit 0bc6d16

Please sign in to comment.