diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2019-11-17 18:00:55 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-01-05 23:36:02 +0100 |
commit | b2af0c68602652b8d35a1d303eaa0a9a41285a2e (patch) | |
tree | 0ea329b956ac25f0d83cc4cb1821ac85aca982cd /nx-X11/programs/Xserver/hw/nxagent/Window.c | |
parent | fa7fb7499fdf3625e28eb018a5ee9748d4b69dfe (diff) | |
download | nx-libs-b2af0c68602652b8d35a1d303eaa0a9a41285a2e.tar.gz nx-libs-b2af0c68602652b8d35a1d303eaa0a9a41285a2e.tar.bz2 nx-libs-b2af0c68602652b8d35a1d303eaa0a9a41285a2e.zip |
Clipboard: make nxagentInitClipboard return a Boolean
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Window.c')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Window.c b/nx-X11/programs/Xserver/hw/nxagent/Window.c index aa8831055..0d36c7960 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Window.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Window.c @@ -2802,7 +2802,7 @@ Bool nxagentReconnectAllWindows(void *p0) fprintf(stderr, "nxagentReconnectAllWindows: All windows reconfigured.\n"); #endif - if (nxagentInitClipboard(screenInfo.screens[0]->root) == -1) + if (!nxagentInitClipboard(screenInfo.screens[0]->root)) { #ifdef WARNING fprintf(stderr, "nxagentReconnectAllWindows: WARNING! Couldn't initialize the clipboard.\n"); |