Fix a maybe-uninitialized warning on GCC 4.9

master
Camilla Berglund ago%!(EXTRA string=10 years)
parent ca8912375c
commit a02aeaf972
  1. 2
      src/glx_context.c

@ -280,7 +280,7 @@ int _glfwCreateContext(_GLFWwindow* window,
const _GLFWfbconfig* fbconfig)
{
int attribs[40];
GLXFBConfig native;
GLXFBConfig native = NULL;
GLXContext share = NULL;
if (ctxconfig->share)

Loading…
Cancel
Save