egl: remove unused err variable

Fixes: 81e95924ea ("egl: call _eglError within _eglParseImageAttribList")

Reviewed-by: Daniel Stone <daniels@collabora.com>
This commit is contained in:
Alejandro Piñeiro 2017-07-13 11:38:48 +02:00
parent c22e3c5373
commit 57671025b0
1 changed files with 1 additions and 1 deletions

View File

@ -1910,7 +1910,7 @@ dri2_create_image_mesa_drm_buffer(_EGLDisplay *disp, _EGLContext *ctx,
EGLClientBuffer buffer, const EGLint *attr_list)
{
struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
EGLint format, name, pitch, err;
EGLint format, name, pitch;
_EGLImageAttribs attrs;
__DRIimage *dri_image;