diff options
author | Daniel Eklöf <daniel@ekloef.se> | 2020-11-13 23:11:07 +0100 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2020-11-13 23:11:07 +0100 |
commit | 128ae9aa7c7ebc0d94996374f9ac32712053c232 (patch) | |
tree | d5e94d57cddfeea6cb8a35c72d5f120c96a65fde /main.c | |
parent | d1e59accdb148aa9df4c95a8ba52078a7956d4ce (diff) | |
download | wbg-128ae9aa7c7ebc0d94996374f9ac32712053c232.tar.gz |
main: use wl_output_release() instead of wl_output_destroy()
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -143,7 +143,7 @@ output_destroy(struct output *output) if (output->surf != NULL) wl_surface_destroy(output->surf); if (output->wl_output != NULL) - wl_output_destroy(output->wl_output); + wl_output_release(output->wl_output); } static void |