diff options
author | Heghedus Razvan <heghedus.razvan@gmail.com> | 2017-10-15 13:32:37 +0300 |
---|---|---|
committer | Heghedus Razvan <heghedus.razvan@gmail.com> | 2017-10-20 11:46:09 +0300 |
commit | 1d716241afbc721c3ae65d4a2bb0e25866fe081c (patch) | |
tree | 890ed910ec48af6f0725f45a66b981469ac517be /examples | |
parent | c03e7746367194b859125624b059c1725eb7ae30 (diff) |
Replace list_t with wl_list in wlr_output
Signed-off-by: Heghedus Razvan <heghedus.razvan@gmail.com>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/shared.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/shared.c b/examples/shared.c index bb1d2737..d9f9ae61 100644 --- a/examples/shared.c +++ b/examples/shared.c @@ -427,8 +427,10 @@ static void output_add_notify(struct wl_listener *listener, void *data) { wlr_log(L_DEBUG, "Output '%s' added", output->name); wlr_log(L_DEBUG, "%s %s %"PRId32"mm x %"PRId32"mm", output->make, output->model, output->phys_width, output->phys_height); - if (output->modes->length > 0) { - wlr_output_set_mode(output, output->modes->items[0]); + if (wl_list_length(&output->modes) > 0) { + struct wlr_output_mode *mode = NULL; + wl_container_of((&output->modes)->prev, mode, link); + wlr_output_set_mode(output, mode); } struct output_state *ostate = calloc(1, sizeof(struct output_state)); clock_gettime(CLOCK_MONOTONIC, &ostate->last_frame); |