On Monday, 2018-08-13 15:42:21 +0100, Emil Velikov wrote: > From: Emil Velikov <[email protected]> > > Remove the explicit cast, using the appropriate wrapper instead. > > Signed-off-by: Emil Velikov <[email protected]>
Series is: Reviewed-by: Eric Engestrom <[email protected]> > --- > src/egl/drivers/dri2/platform_drm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/egl/drivers/dri2/platform_drm.c > b/src/egl/drivers/dri2/platform_drm.c > index 35bc4b5b1ac..d42ef6b2f95 100644 > --- a/src/egl/drivers/dri2/platform_drm.c > +++ b/src/egl/drivers/dri2/platform_drm.c > @@ -45,7 +45,7 @@ lock_front_buffer(struct gbm_surface *_surf) > { > struct gbm_dri_surface *surf = (struct gbm_dri_surface *) _surf; > struct dri2_egl_surface *dri2_surf = surf->dri_private; > - struct gbm_dri_device *device = (struct gbm_dri_device *) _surf->gbm; > + struct gbm_dri_device *device = gbm_dri_device(_surf->gbm); > struct gbm_bo *bo; > > if (dri2_surf->current == NULL) { > -- > 2.18.0 > > _______________________________________________ > mesa-dev mailing list > [email protected] > https://lists.freedesktop.org/mailman/listinfo/mesa-dev _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
