diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2019-09-06 00:30:16 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-09-29 17:17:06 +0200 |
commit | 2682c94077faae061618f89e61242ae96ea35b78 (patch) | |
tree | f00a56582ebd0b784e1b138f97b517bff04249ea | |
parent | f6cdd0f9280c1238670ece82f4aeb4b78b8d3bcd (diff) | |
download | nx-libs-2682c94077faae061618f89e61242ae96ea35b78.tar.gz nx-libs-2682c94077faae061618f89e61242ae96ea35b78.tar.bz2 nx-libs-2682c94077faae061618f89e61242ae96ea35b78.zip |
Display.c: fix format
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Display.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Display.c b/nx-X11/programs/Xserver/hw/nxagent/Display.c index c25afc597..c6412f38a 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Display.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Display.c @@ -2803,11 +2803,11 @@ Bool nxagentReconnectDisplay(void *p0) #endif nxagentConfineWindow = XCreateWindow(nxagentDisplay, - DefaultRootWindow(nxagentDisplay), - 0, 0, 1, 1, 0, 0, - InputOnly, - CopyFromParent, - 0L, NULL); + DefaultRootWindow(nxagentDisplay), + 0, 0, 1, 1, 0, 0, + InputOnly, + CopyFromParent, + 0L, NULL); if (nxagentReportWindowIds) { fprintf(stderr, "NXAGENT_WINDOW_ID: CONFINEMENT_WINDOW,WID:[0x%x]\n", |