rootston: use wl_display_destroy_clients

This commit is contained in:
emersion 2018-05-29 22:50:26 +01:00
parent e1f56538a8
commit f9ad63c5cb
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
2 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,7 @@ endif
# Avoid wl_buffer deprecation warnings # Avoid wl_buffer deprecation warnings
add_project_arguments('-DWL_HIDE_DEPRECATED', language: 'c') add_project_arguments('-DWL_HIDE_DEPRECATED', language: 'c')
wayland_server = dependency('wayland-server') wayland_server = dependency('wayland-server', version: '>=1.15')
wayland_client = dependency('wayland-client') wayland_client = dependency('wayland-client')
wayland_egl = dependency('wayland-egl') wayland_egl = dependency('wayland-egl')
wayland_protos = dependency('wayland-protocols', version: '>=1.14') wayland_protos = dependency('wayland-protocols', version: '>=1.14')

View File

@ -72,6 +72,7 @@ int main(int argc, char **argv) {
} }
wl_display_run(server.wl_display); wl_display_run(server.wl_display);
wl_display_destroy_clients(server.wl_display);
wl_display_destroy(server.wl_display); wl_display_destroy(server.wl_display);
return 0; return 0;
} }