egl: Remove every double semi-colon

Removes all accidental semi-colons in egl.

Signed-off-by: Jakob Sinclair <sinclair.jakob@openmailbox.org>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Chad Versace <chad.versace@intel.com>
This commit is contained in:
Jakob Sinclair 2016-04-14 18:07:39 +02:00 committed by Chad Versace
parent e129e6eb89
commit de743a07ac
2 changed files with 2 additions and 2 deletions

View file

@ -514,7 +514,7 @@ droid_get_buffers_with_format(__DRIdrawable * driDrawable,
if (height)
*height = dri2_surf->base.Height;
*out_count = dri2_surf->buffer_count;;
*out_count = dri2_surf->buffer_count;
return dri2_surf->buffers;
}

View file

@ -68,7 +68,7 @@ surfaceless_get_buffers_with_format(__DRIdrawable * driDrawable,
*width = dri2_surf->base.Width;
if (height)
*height = dri2_surf->base.Height;
*out_count = dri2_surf->buffer_count;;
*out_count = dri2_surf->buffer_count;
return dri2_surf->buffers;
}