compositor-x11: Check the right variable after creating dummy pbuffer

Kristian Høgsberg 13 years ago
parent 870461997a
commit c0bc844094
  1. 2
      src/compositor-x11.c

@ -170,7 +170,7 @@ x11_compositor_init_egl(struct x11_compositor *c)
c->dummy_pbuffer = eglCreatePbufferSurface(c->base.display,
c->base.config,
pbuffer_attribs);
if (c->base.context == NULL) {
if (c->dummy_pbuffer == NULL) {
fprintf(stderr, "failed to create dummy pbuffer\n");
return -1;
}

Loading…
Cancel
Save