diff options
author | Benjamin Franzke <[email protected]> | 2012-03-05 20:28:42 +0100 |
---|---|---|
committer | Benjamin Franzke <[email protected]> | 2012-03-05 20:34:42 +0100 |
commit | e6aa32ac7f8d7b843f4d4f8bf9d8e9db790b0868 (patch) | |
tree | fbf06d45a67a9239a44293a80194e6e17b065267 /src/egl/drivers/dri2/platform_wayland.c | |
parent | da5e9fce47b2029c6f6445ed53f3b5e5ff3889a0 (diff) |
wayland: Use new wl_display_disconnect
This replaces the previously used wl_display_destroy.
wl_display_destroy was povided by wayland-client.so and
wayland-server.so, to resolve that conflict its renamed client-side.
Diffstat (limited to 'src/egl/drivers/dri2/platform_wayland.c')
-rw-r--r-- | src/egl/drivers/dri2/platform_wayland.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/drivers/dri2/platform_wayland.c b/src/egl/drivers/dri2/platform_wayland.c index b2981a02cd0..ad649b141dd 100644 --- a/src/egl/drivers/dri2/platform_wayland.c +++ b/src/egl/drivers/dri2/platform_wayland.c @@ -731,7 +731,7 @@ dri2_terminate(_EGLDriver *drv, _EGLDisplay *disp) free(dri2_dpy->device_name); wl_drm_destroy(dri2_dpy->wl_drm); if (dri2_dpy->own_device) - wl_display_destroy(dri2_dpy->wl_dpy); + wl_display_disconnect(dri2_dpy->wl_dpy); free(dri2_dpy); disp->DriverData = NULL; |