aboutsummaryrefslogtreecommitdiff
path: root/examples/shared.c
diff options
context:
space:
mode:
authorTimidger <APragmaticPlace@gmail.com>2017-10-22 19:29:24 -0700
committerTimidger <APragmaticPlace@gmail.com>2017-10-22 19:29:24 -0700
commita299b9d8757755b3daf7137825ca0bc01a2d9330 (patch)
tree9d0e308c1d7f55736c513e12fb093f0ecd02d5c6 /examples/shared.c
parentf0add2f8a902f121719ee2eb16bfbab5d135f9bc (diff)
Fixes #321, not using result of wl_container_of
Diffstat (limited to 'examples/shared.c')
-rw-r--r--examples/shared.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/shared.c b/examples/shared.c
index 4cde15d1..1a1f4be4 100644
--- a/examples/shared.c
+++ b/examples/shared.c
@@ -414,8 +414,8 @@ static void output_add_notify(struct wl_listener *listener, void *data) {
wlr_log(L_DEBUG, "%s %s %"PRId32"mm x %"PRId32"mm", output->make, output->model,
output->phys_width, output->phys_height);
if (wl_list_length(&output->modes) > 0) {
- struct wlr_output_mode *mode = NULL;
- wl_container_of((&output->modes)->prev, mode, link);
+ struct wlr_output_mode *mode;
+ mode = wl_container_of((&output->modes)->prev, mode, link);
wlr_output_set_mode(output, mode);
}
struct output_state *ostate = calloc(1, sizeof(struct output_state));