1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 20:47:46 +00:00

expand: remove empty line from error message

This commit is contained in:
Daniel Hofstetter 2022-05-30 14:31:39 +02:00
parent 7861cc9dca
commit df2507bdf2

View file

@ -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.