[gles/cogl-shader] Add a missing semicolon

cogl_shader_get_info_log was missing a semicolon which broke the build
on GLES 2.
This commit is contained in:
Neil Roberts 2009-06-04 22:10:33 +01:00
parent e7e8978029
commit c2759846dd

View File

@ -103,7 +103,7 @@ gchar *
cogl_shader_get_info_log (CoglHandle handle)
{
CoglShader *shader;
char buffer[512]
char buffer[512];
int len = 0;
_COGL_GET_CONTEXT (ctx, NULL);