aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/default_orientation.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/default_orientation.c')
-rw-r--r--sway/commands/default_orientation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/default_orientation.c b/sway/commands/default_orientation.c
index a5347ce2..fd42c167 100644
--- a/sway/commands/default_orientation.c
+++ b/sway/commands/default_orientation.c
@@ -14,8 +14,8 @@ struct cmd_results *cmd_default_orientation(int argc, char **argv) {
14 } else if (strcasecmp(argv[0], "auto") == 0) { 14 } else if (strcasecmp(argv[0], "auto") == 0) {
15 // Do nothing 15 // Do nothing
16 } else { 16 } else {
17 return cmd_results_new(CMD_INVALID, "default_orientation", 17 return cmd_results_new(CMD_INVALID,
18 "Expected 'orientation <horizontal|vertical|auto>'"); 18 "Expected 'orientation <horizontal|vertical|auto>'");
19 } 19 }
20 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 20 return cmd_results_new(CMD_SUCCESS, NULL);
21} 21}