aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/border.c
diff options
context:
space:
mode:
authorLibravatar Antonin Décimo <antonin.decimo@gmail.com>2019-08-10 17:03:20 +0200
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-08-12 09:42:11 +0900
commit813e1209795f7016fd1223c5ce96b2185eed5a9a (patch)
tree892eeea5d2ae14f4a18e6dc74fdc0703bb124e4b /sway/commands/border.c
parentFix memory leaks (diff)
downloadsway-813e1209795f7016fd1223c5ce96b2185eed5a9a.tar.gz
sway-813e1209795f7016fd1223c5ce96b2185eed5a9a.tar.zst
sway-813e1209795f7016fd1223c5ce96b2185eed5a9a.zip
Remove redundant checks
Diffstat (limited to 'sway/commands/border.c')
-rw-r--r--sway/commands/border.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/border.c b/sway/commands/border.c
index 6be5b794..647663ac 100644
--- a/sway/commands/border.c
+++ b/sway/commands/border.c
@@ -75,7 +75,7 @@ struct cmd_results *cmd_border(int argc, char **argv) {
75 } else if (strcmp(argv[0], "pixel") == 0) { 75 } else if (strcmp(argv[0], "pixel") == 0) {
76 set_border(container, B_PIXEL); 76 set_border(container, B_PIXEL);
77 } else if (strcmp(argv[0], "csd") == 0) { 77 } else if (strcmp(argv[0], "csd") == 0) {
78 if (!view || !view->xdg_decoration) { 78 if (!view->xdg_decoration) {
79 return cmd_results_new(CMD_INVALID, 79 return cmd_results_new(CMD_INVALID,
80 "This window doesn't support client side decorations"); 80 "This window doesn't support client side decorations");
81 } 81 }