Skip to content

Commit

Permalink
expand: remove empty line from error message
Browse files Browse the repository at this point in the history
  • Loading branch information
cakebaker committed May 30, 2022
1 parent 7861cc9 commit df2507b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uu/expand/src/expand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ fn tabstops_parse(s: &str) -> (RemainingMode, Vec<usize>) {

// Tab size must be positive.
if num == 0 {
crash!(1, "{}\n", "tab size cannot be 0");
crash!(1, "tab size cannot be 0");
}

// Tab sizes must be ascending.
Expand Down

0 comments on commit df2507b

Please sign in to comment.