aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/default_floating_border.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/default_floating_border.c')
-rw-r--r--sway/commands/default_floating_border.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/default_floating_border.c b/sway/commands/default_floating_border.c
index 1bfc24af..7e4edc36 100644
--- a/sway/commands/default_floating_border.c
+++ b/sway/commands/default_floating_border.c
@@ -17,7 +17,7 @@ struct cmd_results *cmd_default_floating_border(int argc, char **argv) {
17 } else if (strcmp(argv[0], "pixel") == 0) { 17 } else if (strcmp(argv[0], "pixel") == 0) {
18 config->floating_border = B_PIXEL; 18 config->floating_border = B_PIXEL;
19 } else { 19 } else {
20 return cmd_results_new(CMD_INVALID, "default_floating_border", 20 return cmd_results_new(CMD_INVALID,
21 "Expected 'default_floating_border <none|normal|pixel>' " 21 "Expected 'default_floating_border <none|normal|pixel>' "
22 "or 'default_floating_border <normal|pixel> <px>'"); 22 "or 'default_floating_border <normal|pixel> <px>'");
23 } 23 }
@@ -25,5 +25,5 @@ struct cmd_results *cmd_default_floating_border(int argc, char **argv) {
25 config->floating_border_thickness = atoi(argv[1]); 25 config->floating_border_thickness = atoi(argv[1]);
26 } 26 }
27 27
28 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 28 return cmd_results_new(CMD_SUCCESS, NULL);
29} 29}