Module Name:    xsrc
Committed By:   mrg
Date:           Tue Aug 16 08:07:50 UTC 2016

Modified Files:
        xsrc/external/mit/xf86-video-vmware/dist/src: vmware.c

Log Message:
xf86GetOptValString() returns const char *


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.8 -r1.2 \
    xsrc/external/mit/xf86-video-vmware/dist/src/vmware.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: xsrc/external/mit/xf86-video-vmware/dist/src/vmware.c
diff -u xsrc/external/mit/xf86-video-vmware/dist/src/vmware.c:1.1.1.8 xsrc/external/mit/xf86-video-vmware/dist/src/vmware.c:1.2
--- xsrc/external/mit/xf86-video-vmware/dist/src/vmware.c:1.1.1.8	Fri Feb 13 07:59:39 2015
+++ xsrc/external/mit/xf86-video-vmware/dist/src/vmware.c	Tue Aug 16 08:07:50 2016
@@ -1324,7 +1324,7 @@ VMWAREScreenInit(SCREEN_INIT_ARGS_DECL)
 
 
     if (useXinerama && xf86IsOptionSet(options, OPTION_GUI_LAYOUT)) {
-       char *topology = xf86GetOptValString(options, OPTION_GUI_LAYOUT);
+       const char *topology = xf86GetOptValString(options, OPTION_GUI_LAYOUT);
        if (topology) {
           pVMWARE->xineramaState =
              VMWAREParseTopologyString(pScrn, topology,
@@ -1336,7 +1336,7 @@ VMWAREScreenInit(SCREEN_INIT_ARGS_DECL)
        }
     } else if (useXinerama &&
 	       xf86IsOptionSet(options, OPTION_STATIC_XINERAMA)) {
-       char *topology = xf86GetOptValString(options, OPTION_STATIC_XINERAMA);
+       const char *topology = xf86GetOptValString(options, OPTION_STATIC_XINERAMA);
        if (topology) {
           pVMWARE->xineramaState =
              VMWAREParseTopologyString(pScrn, topology,

Reply via email to