Removes all acidental semi-colons in egl.

Signed-off-by: Jakob Sinclair <[email protected]>
---
 src/egl/drivers/dri2/platform_android.c     | 2 +-
 src/egl/drivers/dri2/platform_surfaceless.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/egl/drivers/dri2/platform_android.c 
b/src/egl/drivers/dri2/platform_android.c
index 41840aa..c00b2c2 100644
--- a/src/egl/drivers/dri2/platform_android.c
+++ b/src/egl/drivers/dri2/platform_android.c
@@ -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;
 }
diff --git a/src/egl/drivers/dri2/platform_surfaceless.c 
b/src/egl/drivers/dri2/platform_surfaceless.c
index 48f15df..e0ddc12 100644
--- a/src/egl/drivers/dri2/platform_surfaceless.c
+++ b/src/egl/drivers/dri2/platform_surfaceless.c
@@ -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;
 }
 
-- 
2.8.0

_______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to