mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 01:38:04 +00:00
Merge pull request #3577 from cakebaker/remove_empty_line_from_error_message
expand: remove empty line from error message
This commit is contained in:
commit
2516610579
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ fn tabstops_parse(s: &str) -> (RemainingMode, Vec<usize>) {
|
||||||
|
|
||||||
// Tab size must be positive.
|
// Tab size must be positive.
|
||||||
if num == 0 {
|
if num == 0 {
|
||||||
crash!(1, "{}\n", "tab size cannot be 0");
|
crash!(1, "tab size cannot be 0");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tab sizes must be ascending.
|
// Tab sizes must be ascending.
|
||||||
|
|
Loading…
Reference in a new issue