Commit 9aa33917 authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

Handlers.c: make synchronize a Boolean variable

parent 90178b54
...@@ -179,7 +179,7 @@ void nxagentBlockHandler(void * data, struct timeval **timeout, void * mask) ...@@ -179,7 +179,7 @@ void nxagentBlockHandler(void * data, struct timeval **timeout, void * mask)
* Set if we need to synchronize any drawable. * Set if we need to synchronize any drawable.
*/ */
static int synchronize; static Bool synchronize;
#ifdef BLOCKS #ifdef BLOCKS
fprintf(stderr, "[Begin block]\n"); fprintf(stderr, "[Begin block]\n");
...@@ -302,7 +302,7 @@ void nxagentBlockHandler(void * data, struct timeval **timeout, void * mask) ...@@ -302,7 +302,7 @@ void nxagentBlockHandler(void * data, struct timeval **timeout, void * mask)
* are synchronized. * are synchronized.
*/ */
if (synchronize == 1) if (synchronize)
{ {
/* /*
* We should not enter the synchronization loop if there is any * We should not enter the synchronization loop if there is any
...@@ -350,7 +350,7 @@ void nxagentBlockHandler(void * data, struct timeval **timeout, void * mask) ...@@ -350,7 +350,7 @@ void nxagentBlockHandler(void * data, struct timeval **timeout, void * mask)
nxagentCorruptedBackgrounds > 0 || nxagentCorruptedBackgrounds > 0 ||
nxagentCorruptedPixmaps > 0)); nxagentCorruptedPixmaps > 0));
if (!nxagentSkipImage && synchronize == 1) if (!nxagentSkipImage && synchronize)
{ {
#ifdef TEST #ifdef TEST
fprintf(stderr, "nxagentBlockHandler: Setting a zero timeout with [%d][%d][%d] and " fprintf(stderr, "nxagentBlockHandler: Setting a zero timeout with [%d][%d][%d] and "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment