mirror of
https://github.com/brl/mutter.git
synced 2024-11-10 07:56:14 -05:00
Fix a compiler warning
This commit is contained in:
parent
805fb0620a
commit
133fc2e357
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user