diff options
author | Alexander Orzechowski <alex@ozal.ski> | 2023-08-16 11:35:28 -0400 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2023-08-16 11:46:27 -0400 |
commit | 6cda3e251c8f78a376b3a239c2c4fd7fae1a3f3e (patch) | |
tree | 9584cd1e9cf3828c1aa97660c22d921759952498 /backend/headless | |
parent | 8f67446cc736be1c10ff48e83dda3e98ae816dc2 (diff) |
output: Add initialization state to wlr_output_init
Diffstat (limited to 'backend/headless')
-rw-r--r-- | backend/headless/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/headless/output.c b/backend/headless/output.c index 9cac54d1..12bededc 100644 --- a/backend/headless/output.c +++ b/backend/headless/output.c @@ -121,7 +121,7 @@ struct wlr_output *wlr_headless_add_output(struct wlr_backend *wlr_backend, } output->backend = backend; wlr_output_init(&output->wlr_output, &backend->backend, &output_impl, - backend->display); + backend->display, NULL); struct wlr_output *wlr_output = &output->wlr_output; output_set_custom_mode(output, width, height, 0); |