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

x2go pushed a commit to branch master
in repository x2gokdrive.

commit 0371071fb22b3ab7c6dafe1421a96891d5c8bc66
Author: Mike Gabriel <[email protected]>
Date:   Wed Jul 17 00:02:36 2019 +0200

    x2gokdrive.c: Fix "passing argument 2 of ‘addOutput’ discards ‘const’ 
qualifier from pointer target type" compiler warning.
---
 x2gokdrive.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/x2gokdrive.c b/x2gokdrive.c
index 0641cca..dec4db3 100644
--- a/x2gokdrive.c
+++ b/x2gokdrive.c
@@ -800,6 +800,7 @@ ephyrRandRInit(ScreenPtr pScreen)
     KdScreenInfo *screen = pScreenPriv->screen;
     Rotation randr;
     EphyrScrPriv *scrpriv = screen->driver;
+    char output_name[]="X2GoKdrive-0";
 
     scrpriv->virtualScreens=NULL;
     scrpriv->localRandrCall=FALSE;
@@ -824,7 +825,7 @@ ephyrRandRInit(ScreenPtr pScreen)
 
     RRSetCurrentConfig(pScreen, randr, 0, pSize);
 
-    addOutput(pScreen,"X2GoKdrive-0", screen->width, screen->height, 0,0, 
TRUE, TRUE);
+    addOutput(pScreen, output_name, screen->width, screen->height, 0,0, TRUE, 
TRUE);
 
     return TRUE;
 }

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on 
/srv/git/code.x2go.org/x2gokdrive.git
_______________________________________________
x2go-commits mailing list
[email protected]
https://lists.x2go.org/listinfo/x2go-commits

Reply via email to