diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-08-14 09:13:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-14 09:13:24 -0400 |
commit | 1e1e9887fba15291256a806aca6cc6f94a8f671e (patch) | |
tree | 0b05c74f83f1bdb0956c94e6e9631584cd4f99ed /backend/multi | |
parent | 2facf1df65742a1f4ae6977c8a54bc14643c6c1b (diff) | |
parent | db77530a35f1adbd66f567d733b55a57a62304d8 (diff) |
Merge pull request #84 from martinetd/fixes
Fixes
Diffstat (limited to 'backend/multi')
-rw-r--r-- | backend/multi/backend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/multi/backend.c b/backend/multi/backend.c index 94b7dd60..9afca47d 100644 --- a/backend/multi/backend.c +++ b/backend/multi/backend.c @@ -112,7 +112,7 @@ static void output_remove_reemit(struct wl_listener *listener, void *data) { void wlr_multi_backend_add(struct wlr_backend *_multi, struct wlr_backend *backend) { - assert(wlr_backend_is_multi(backend)); + assert(wlr_backend_is_multi(_multi)); struct wlr_multi_backend *multi = (struct wlr_multi_backend *)_multi; struct subbackend_state *sub = calloc(1, sizeof(struct subbackend_state)); |