diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2018-05-05 18:56:35 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-08-16 11:51:39 +0200 |
commit | 62573abf00fb6fd6fcc642088a570400d88197d0 (patch) | |
tree | 8f82999da66759ac849a6744397300ec98cf3ee2 /nx-X11/programs/Xserver/hw/nxagent/Client.c | |
parent | 7f4b50deb5a41bc88227ce925ecbb3fe713705c2 (diff) | |
download | nx-libs-62573abf00fb6fd6fcc642088a570400d88197d0.tar.gz nx-libs-62573abf00fb6fd6fcc642088a570400d88197d0.tar.bz2 nx-libs-62573abf00fb6fd6fcc642088a570400d88197d0.zip |
nxagent: simplify nxagentWaitEvents()
no more need to pass down a struct, we now only pass the milliseconds
and let the function do the rest.
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Client.c')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Client.c b/nx-X11/programs/Xserver/hw/nxagent/Client.c index 206b6d8e3..6ea0c4fcf 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Client.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Client.c @@ -400,7 +400,7 @@ void nxagentWaitWakeupBySplit(ClientPtr client) fprintf(stderr, "++++++nxagentWaitWakeupBySplit: Yielding control to the NX transport.\n"); #endif - nxagentWaitEvents(nxagentDisplay, NULL); + nxagentWaitEvents(nxagentDisplay, 0); } } |