[X2Go-Commits] [nx-libs] 16/18: nx-X11/programs/Xserver/hw/nxagent/Screen.c: fix boolean vs. logical operator typo.

git-admin at x2go.org git-admin at x2go.org
Fri Jul 13 07:30:56 CEST 2018


This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch 3.6.x-rpm-debug
in repository nx-libs.

commit 287338f39634b045d7059552bcedf8459cfb0618
Author: Mihai Moldovan <ionic at ionic.de>
Date:   Mon Jun 4 09:38:50 2018 +0200

    nx-X11/programs/Xserver/hw/nxagent/Screen.c: fix boolean vs. logical operator typo.
---
 nx-X11/programs/Xserver/hw/nxagent/Screen.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nx-X11/programs/Xserver/hw/nxagent/Screen.c b/nx-X11/programs/Xserver/hw/nxagent/Screen.c
index 5a09cdb..5c4bc8e 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Screen.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Screen.c
@@ -8345,7 +8345,7 @@ void nxagentPrintGeometry(void)
 
   for (i = 0; i < screenInfo.numScreens; i++)
   {
-    if (nxagentPrintGeometryFlags && (1 << i))
+    if (nxagentPrintGeometryFlags & (1 << i))
     {
       fprintf(stderr, "Info: Screen [%d] resized to geometry [%dx%d] "
                   "fullscreen [%d].\n", i, screenInfo.screens[i] -> width,

--
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