From c24ca35c28cf4a9e36a0f4fc657d26e665f047a4 Mon Sep 17 00:00:00 2001 From: Ryan Farley Date: Tue, 24 Mar 2020 09:56:50 -0500 Subject: [PATCH] put workspace output error string on one line To ease grepping as requested --- sway/commands/workspace.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sway/commands/workspace.c b/sway/commands/workspace.c index a8a2f53b6..0d74e0f21 100644 --- a/sway/commands/workspace.c +++ b/sway/commands/workspace.c @@ -141,8 +141,8 @@ struct cmd_results *cmd_workspace(int argc, char **argv) { } } if (output_location == 0) { - return cmd_results_new(CMD_INVALID, "Expected 'workspace " - " output '"); + return cmd_results_new(CMD_INVALID, + "Expected 'workspace output '"); } else if (output_location > 0) { if ((error = checkarg(argc, "workspace", EXPECTED_AT_LEAST, output_location + 2))) {