diff options
author | Philip Langdale <philipl@fido2.homeip.net> | 2006-10-25 10:49:27 -0700 |
---|---|---|
committer | Philip Langdale <philipl@fido2.homeip.net> | 2006-10-25 10:49:27 -0700 |
commit | 57b32570f84d06180be2c9d249174b04f02d9fca (patch) | |
tree | ec4885dcbc0b96e4dea7c4821f57b1b3c4a63e70 /src/vmwarectrl.c | |
parent | c62a63b00f7c43e265079d31f1bf7ff447423056 (diff) |
Add support for a static Xinerama configuration to be specified
in xorg.conf. This static configuration will always be used and
any attempts to update it will be ignored.
Note that all xinerama aware apps that I have seen will not
sanity check the xinerama extents against the screen size, so
if the screen doesn't properly enclose the xinerama extents,
expect your apps to punish you accordingly.
Diffstat (limited to 'src/vmwarectrl.c')
-rw-r--r-- | src/vmwarectrl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vmwarectrl.c b/src/vmwarectrl.c index 413e673..f57ad7e 100644 --- a/src/vmwarectrl.c +++ b/src/vmwarectrl.c @@ -254,7 +254,7 @@ VMwareCtrlDoSetTopology(ScrnInfoPtr pScrn, if (xineramaState) { memcpy(xineramaState, extents, number * sizeof (VMWAREXineramaRec)); - Xfree(pVMWARE->xineramaNextState); + xfree(pVMWARE->xineramaNextState); pVMWARE->xineramaNextState = xineramaState; pVMWARE->xineramaNextNumOutputs = number; |