diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2019-11-17 16:29:24 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-01-05 23:36:02 +0100 |
commit | ffce5337d8a682a1ac88476cdda074c8a5109247 (patch) | |
tree | b1aabd68277aa3b57949876f257a970ac61fa3f9 /nx-X11 | |
parent | 9226abf6673fa5378f59ef76226472de07f81e85 (diff) | |
download | nx-libs-ffce5337d8a682a1ac88476cdda074c8a5109247.tar.gz nx-libs-ffce5337d8a682a1ac88476cdda074c8a5109247.tar.bz2 nx-libs-ffce5337d8a682a1ac88476cdda074c8a5109247.zip |
Clipboard.c: reformat some comments
Diffstat (limited to 'nx-X11')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Clipboard.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c b/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c index 623b7a642..1279848fc 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c @@ -1579,10 +1579,8 @@ void nxagentSetSelectionOwner(Selection *pSelection) { #ifdef DEBUG fprintf(stderr, "%s: lastSelectionOwner.client [%p] index [%d] -> [%p] index [%d]\n", __func__, - (void *)lastSelectionOwner[i].client, - CLINDEX(lastSelectionOwner[i].client), - (void *)pSelection->client, - CLINDEX(pSelection->client)); + (void *)lastSelectionOwner[i].client, CLINDEX(lastSelectionOwner[i].client), + (void *)pSelection->client, CLINDEX(pSelection->client)); fprintf(stderr, "%s: lastSelectionOwner.window [0x%x] -> [0x%x]\n", __func__, lastSelectionOwner[i].window, pSelection->window); fprintf(stderr, "%s: lastSelectionOwner.windowPtr [%p] -> [%p] [0x%x] (serverWindow: [0x%x])\n", __func__, @@ -1616,7 +1614,7 @@ void nxagentSetSelectionOwner(Selection *pSelection) /* FIXME - if (XGetSelectionOwner(nxagentDisplay,pSelection->selection)==serverWindow) + if (XGetSelectionOwner(nxagentDisplay,pSelection->selection) == serverWindow) { fprintf (stderr, "%s: SetSelectionOwner OK\n", __func__); |