intel-virtual-output: Remove the stray 1

The 'output-is-changed' flags was accidentally initialised to 01 rather
than 0, causing all attached outputs to be considered to have changed
everytime.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson 2013-09-02 22:56:03 +01:00
parent 84b66849fc
commit d54f0fa16d
1 changed files with 1 additions and 1 deletions

View File

@ -812,7 +812,7 @@ static void context_update(struct context *ctx)
XRROutputInfo *o;
XRRCrtcInfo *c;
RRMode mode = 0;
int changed = 0l;
int changed = 0;
o = XRRGetOutputInfo(dpy, res, output->rr_output);
if (o == NULL)