Fix a maybe-uninitialized warning on GCC 4.9

This commit is contained in:
Camilla Berglund 2015-08-12 18:02:02 +02:00
parent ca8912375c
commit a02aeaf972
1 changed files with 1 additions and 1 deletions

View File

@ -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)