Missed a variable

This commit is contained in:
Drew DeVault 2017-08-04 16:44:45 -04:00
parent 95653c0bf7
commit 7c393d5143
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ static void destroy_surface_listener(struct wl_listener *listener, void *data) {
struct wl_resource *res = NULL;
wl_list_for_each(res, &state->surfaces, link) {
if (_res == surface->resource) {
if (res == surface->resource) {
wl_list_remove(&res->link);
break;
}