summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c
index 2c9cc290..725dedd2 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -315,7 +315,7 @@ void apply_output_config(struct output_config *oc, swayc_t *output) {
315 output->x = x; 315 output->x = x;
316 } 316 }
317 317
318 if (oc->background) { 318 if (oc && oc->background) {
319 int i; 319 int i;
320 for (i = 0; i < root_container.children->length; ++i) { 320 for (i = 0; i < root_container.children->length; ++i) {
321 if (root_container.children->items[i] == output) { 321 if (root_container.children->items[i] == output) {