[X2Go-Commits] [nx-libs] 45/219: Screen.c: use consistent spacing on pointer references
git-admin at x2go.org
git-admin at x2go.org
Sat Sep 28 12:10:19 CEST 2019
This is an automated email from the git hooks/post-receive script.
x2go pushed a commit to branch 3.6.x
in repository nx-libs.
commit 0e496e5d1830670e273df54adedd8e5b5d68ef92
Author: Ulrich Sibiller <uli42 at gmx.de>
Date: Mon Jun 10 12:06:31 2019 +0200
Screen.c: use consistent spacing on pointer references
---
nx-X11/programs/Xserver/hw/nxagent/Screen.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Screen.c b/nx-X11/programs/Xserver/hw/nxagent/Screen.c
index bcb0c2661..432bc1b37 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Screen.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Screen.c
@@ -1778,7 +1778,7 @@ N/A
if (nxagentReportWindowIds)
{
- fprintf(stderr, "NXAGENT_WINDOW_ID: SCREEN_WINDOW:[%d],WID:[0x%x]\n", pScreen -> myNum, nxagentDefaultWindows[pScreen->myNum]);
+ fprintf(stderr, "NXAGENT_WINDOW_ID: SCREEN_WINDOW:[%d],WID:[0x%x]\n", pScreen->myNum, nxagentDefaultWindows[pScreen->myNum]);
}
if (nxagentOption(Rootless) == 0)
@@ -1787,9 +1787,9 @@ N/A
mask = PointerMotionMask;
attributes.event_mask = mask;
- nxagentInputWindows[pScreen -> myNum] =
+ nxagentInputWindows[pScreen->myNum] =
XCreateWindow(nxagentDisplay,
- nxagentDefaultWindows[pScreen -> myNum],
+ nxagentDefaultWindows[pScreen->myNum],
0, 0,
nxagentOption(Width),
nxagentOption(Height),
@@ -1799,7 +1799,7 @@ N/A
if (nxagentReportWindowIds)
{
- fprintf(stderr, "NXAGENT_WINDOW_ID: INPUT_WINDOW:[%d],WID:[0x%x]\n", pScreen -> myNum, nxagentInputWindows[pScreen->myNum]);
+ fprintf(stderr, "NXAGENT_WINDOW_ID: INPUT_WINDOW:[%d],WID:[0x%x]\n", pScreen->myNum, nxagentInputWindows[pScreen->myNum]);
}
}
--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
More information about the x2go-commits
mailing list