From: Rob Herring Date: Mon, 31 Jul 2017 14:32:10 +0000 (-0500) Subject: Android: fix compile error for DRI2 loader getCapability X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=be5773fa8dfe9255d9abaf5c7d5bbbd2d922da08;p=mesa.git Android: fix compile error for DRI2 loader getCapability Fix compile failure from commit 1bf703e4ea5c ("dri_interface,egl,gallium: only expose RGBA visuals on Android"). Fixes: 1bf703e4ea5c ("dri_interface,egl,gallium: only expose RGBA visuals on Android") Cc: 17.2 Reviewed-by: Marek Olšák Signed-off-by: Rob Herring --- diff --git a/src/egl/drivers/dri2/platform_android.c b/src/egl/drivers/dri2/platform_android.c index bae42412b57..50a82486956 100644 --- a/src/egl/drivers/dri2/platform_android.c +++ b/src/egl/drivers/dri2/platform_android.c @@ -1142,7 +1142,7 @@ static const __DRIdri2LoaderExtension droid_dri2_loader_extension = { .getBuffers = NULL, .flushFrontBuffer = droid_flush_front_buffer, .getBuffersWithFormat = droid_get_buffers_with_format, - .getCapability = droid_get_capability; + .getCapability = droid_get_capability, }; static const __DRIimageLoaderExtension droid_image_loader_extension = {