Commit c1843ef8 authored by Ulrich Sibiller's avatar Ulrich Sibiller

Handlers.c: use the same boolean values as in NXdispatch.c

although there is no functional difference...
parent 432cc0ca
......@@ -1017,7 +1017,7 @@ void nxagentDispatchHandler(ClientPtr client, int in, int out)
nxagentDispatch.in = nxagentBytesIn;
nxagentDispatch.out = nxagentBytesOut;
isItTimeToYield = 1;
isItTimeToYield = TRUE;
}
#ifdef DEBUG
else
......@@ -1126,7 +1126,7 @@ void nxagentDispatchHandler(ClientPtr client, int in, int out)
nxagentDispatch.in = nxagentBytesIn;
nxagentDispatch.out = nxagentBytesOut;
isItTimeToYield = 1;
isItTimeToYield = TRUE;
}
#ifdef DEBUG
else
......
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