summaryrefslogtreecommitdiffstats
path: root/src/egl
diff options
context:
space:
mode:
authorJakob Sinclair <[email protected]>2016-04-14 18:07:39 +0200
committerChad Versace <[email protected]>2016-04-26 14:36:29 -0700
commitde743a07aca97b7b96f6cd3b9f9e3d3c8bf5b845 (patch)
treee00356cd4b8c82ab6f3a8f3d4b4c916fa4cc7904 /src/egl
parente129e6eb89e749015f55b827b7fd45c817149f21 (diff)
egl: Remove every double semi-colon
Removes all accidental semi-colons in egl. Signed-off-by: Jakob Sinclair <[email protected]> Reviewed-by: Ian Romanick <[email protected]> Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r--src/egl/drivers/dri2/platform_android.c2
-rw-r--r--src/egl/drivers/dri2/platform_surfaceless.c2
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 41840aa7b2a..c00b2c2d89c 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 48f15df75a1..e0ddc12e53e 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;
}