egl-gdl: Silence a gcc warning

gcc warns us that we should put some {} to make to which 'if's the
'else' belongs to very clear.

https://bugzilla.gnome.org/show_bug.cgi?id=655723

Reviewed-by: Neil Roberts <neil@linux.intel.com>
This commit is contained in:
Damien Lespiau 2011-08-01 17:23:25 +03:00 committed by Neil Roberts
parent bbbe6db284
commit 89426a802f

View File

@ -1100,11 +1100,13 @@ gdl_plane_init (CoglDisplay *display, GError **error)
/* Default to triple buffering if we don't have an onscreen template */
if (rc == GDL_SUCCESS)
if (display->onscreen_template)
rc = gdl_plane_set_uint (GDL_PLANE_NUM_GFX_SURFACES,
display->onscreen_template->swap_chain->length);
else
rc = gdl_plane_set_uint (GDL_PLANE_NUM_GFX_SURFACES, 3);
{
if (display->onscreen_template)
rc = gdl_plane_set_uint (GDL_PLANE_NUM_GFX_SURFACES,
display->onscreen_template->swap_chain->length);
else
rc = gdl_plane_set_uint (GDL_PLANE_NUM_GFX_SURFACES, 3);
}
if (rc == GDL_SUCCESS)
rc = gdl_plane_config_end (GDL_FALSE);