summaryrefslogtreecommitdiff
path: root/sway/container.c
diff options
context:
space:
mode:
authortaiyu <[email protected]>2015-09-18 06:52:04 -0700
committertaiyu <[email protected]>2015-09-18 06:52:04 -0700
commitd2e2b04bfd505561981c9137bfc493bb8effe63e (patch)
tree8e720c0114cab4639393b4debc3f37de16bc4ed3 /sway/container.c
parenta04f645d7cb4f54ebc11119220b4adb5d0b82ef1 (diff)
minor fix
Diffstat (limited to 'sway/container.c')
-rw-r--r--sway/container.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/container.c b/sway/container.c
index ef0e6c55..d6bcc4c2 100644
--- a/sway/container.c
+++ b/sway/container.c
@@ -403,7 +403,7 @@ swayc_t *swayc_by_test(swayc_t *container, bool (*test)(swayc_t *view, void *dat
}
static bool test_name(swayc_t *view, void *data) {
- if (!view && !view->name) {
+ if (!view || !view->name) {
return false;
}
return strcmp(view->name, data) == 0;