diff options
author | Stéphane Marchesin <marcheu@chromium.org> | 2011-06-20 17:18:32 -0700 |
---|---|---|
committer | Stéphane Marchesin <marcheu@chromium.org> | 2011-06-20 17:19:00 -0700 |
commit | 75be6b76eef00352195220a4beefbc7ca0b76453 (patch) | |
tree | b8c2a1dc735d96ad775edbca5eedee65f166d34d | |
parent | 649d03d54d2b508bc6144fed41cedf7aa9ad0be5 (diff) |
glx: Fix compile.
-rw-r--r-- | src/glx/glxcurrent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/glxcurrent.c b/src/glx/glxcurrent.c index 6f048ae571..c92a2fd3cc 100644 --- a/src/glx/glxcurrent.c +++ b/src/glx/glxcurrent.c @@ -273,7 +273,7 @@ MakeContextCurrent(Display * dpy, GLXDrawable draw, return GL_FALSE; } - if (gc->thread_refcount == 0) + if (gc->thread_refcount == 0) { gc->currentDpy = dpy; gc->currentDrawable = draw; gc->currentReadable = read; |