From df2507bdf2d5b386bf060f95412656ccab421f0f Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Mon, 30 May 2022 14:31:39 +0200 Subject: [PATCH] expand: remove empty line from error message --- src/uu/expand/src/expand.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/expand/src/expand.rs b/src/uu/expand/src/expand.rs index 11761516238..ff39ff6cc75 100644 --- a/src/uu/expand/src/expand.rs +++ b/src/uu/expand/src/expand.rs @@ -93,7 +93,7 @@ fn tabstops_parse(s: &str) -> (RemainingMode, Vec) { // 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.