diff options
author | Stivvo <stivvo01@gmail.com> | 2020-10-18 18:37:55 +0200 |
---|---|---|
committer | Stivvo <stivvo01@gmail.com> | 2020-10-18 18:37:55 +0200 |
commit | 7017a0c64d3a58635cb5e088fab890c4efa02737 (patch) | |
tree | 81b75c6c4ba9f0bb39ee0adac7d6a31ff568bdc2 | |
parent | 96d9f010ded4292c25743a97e704635e143e13d5 (diff) |
fix compile error mixed declaration
-rw-r--r-- | dwl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2149,8 +2149,8 @@ unmapnotify(struct wl_listener *listener, void *data) void updatemons() { - sgeom = *wlr_output_layout_get_box(output_layout, NULL); Monitor *m; + sgeom = *wlr_output_layout_get_box(output_layout, NULL); wl_list_for_each(m, &mons, link) { /* Get the effective monitor geometry to use for surfaces */ m->m = m->w = *wlr_output_layout_get_box(output_layout, m->wlr_output); |