From 133fc2e3571378859fffc100b28b33876baf1513 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Fri, 5 Jun 2009 15:18:43 +0100 Subject: [PATCH] Fix a compiler warning --- common/cogl-vertex-buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/cogl-vertex-buffer.c b/common/cogl-vertex-buffer.c index a36bb1cec..d62964374 100644 --- a/common/cogl-vertex-buffer.c +++ b/common/cogl-vertex-buffer.c @@ -746,7 +746,7 @@ filter_strided_attribute (CoglVertexBufferAttrib *attribute, CoglVertexBufferVBO *cogl_vbo = tmp->data; GList *tmp2; - if (!cogl_vbo->flags & COGL_VERTEX_BUFFER_VBO_FLAG_STRIDED) + if (!(cogl_vbo->flags & COGL_VERTEX_BUFFER_VBO_FLAG_STRIDED)) continue; for (tmp2 = cogl_vbo->attributes; tmp2 != NULL; tmp2 = tmp2->next)