mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 10:00:45 -05:00
pipeline: remove spurious use of True instead of TRUE
The constant 'True' is defined by Xlib which isn't used for all clutter builds so this replaces occurrences of True with TRUE which is defined by glib. This should hopefully fix the win32 builds.
This commit is contained in:
parent
464ed7e6b7
commit
67c2a1b29f
@ -2945,7 +2945,7 @@ _cogl_pipeline_layer_resolve_authorities (CoglPipelineLayer *layer,
|
||||
if (found == 0)
|
||||
continue;
|
||||
|
||||
for (i = 0; True; i++)
|
||||
for (i = 0; TRUE; i++)
|
||||
{
|
||||
unsigned long state = (1L<<i);
|
||||
|
||||
@ -3323,7 +3323,7 @@ _cogl_pipeline_resolve_authorities (CoglPipeline *pipeline,
|
||||
if (found == 0)
|
||||
continue;
|
||||
|
||||
for (i = 0; True; i++)
|
||||
for (i = 0; TRUE; i++)
|
||||
{
|
||||
unsigned long state = (1L<<i);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user