* clutter/cogl/gl/cogl-internal.h

* clutter/cogl/gles/cogl-internal.h:
	Removes semicolon after the GE() macro since that breaks using it as a
	single statement.
This commit is contained in:
Robert Bragg 2008-11-18 16:23:40 +00:00
parent e733889655
commit 6731dfa468
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ const char *_cogl_error_string(GLenum errorCode);
#else /* COGL_DEBUG */
#define GE(x) (x);
#define GE(x) (x)
#endif /* COGL_DEBUG */

View File

@ -70,7 +70,7 @@ const char *_cogl_error_string(GLenum errorCode);
#else /* COGL_DEBUG */
#define GE(x) (x);
#define GE(x) (x)
#endif /* COGL_DEBUG */