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