diff options
author | Emil Velikov <[email protected]> | 2016-11-11 16:27:59 +0000 |
---|---|---|
committer | Daniel Stone <[email protected]> | 2016-11-11 17:33:37 +0000 |
commit | 6ff948ece11042476acbdf218f60ce7c03a147c5 (patch) | |
tree | 92388d99d34b6d7483386f37c40a05d608c17165 /src/egl | |
parent | 92ec47a6bad2f1198148dbbab4271d87c5a469a3 (diff) |
egl/wayland: fix return value in dri2_wl_swrast_commit_backbuffer
The function returns "void" rather than int. We could rework that, yet
again there will be no benefit since all the callers have no use of it.
Fixes: 9ca6711faa0 ("Revert "wayland: Block for the frame callback in
get_back_bo not dri2_swap_buffers"")
Reviewed-by: Daniel Stone <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl')
-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 83abff386d9..4fd4289679e 100644 --- a/src/egl/drivers/dri2/platform_wayland.c +++ b/src/egl/drivers/dri2/platform_wayland.c @@ -1559,7 +1559,7 @@ dri2_wl_swrast_commit_backbuffer(struct dri2_egl_surface *dri2_surf) while (dri2_surf->throttle_callback != NULL) if (wl_display_dispatch_queue(dri2_dpy->wl_dpy, dri2_dpy->wl_queue) == -1) - return -1; + return; if (dri2_surf->base.SwapInterval > 0) { dri2_surf->throttle_callback = |