From 305537e8d602d7f467a672829b51d560c1dbdb78 Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Tue, 21 Jan 2020 21:23:46 +0100 Subject: [PATCH] Issue #1354 - Fix typo --- gfx/gl/GLContextProviderGLX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/gl/GLContextProviderGLX.cpp b/gfx/gl/GLContextProviderGLX.cpp index 178052f8cb..c44b1a9f06 100644 --- a/gfx/gl/GLContextProviderGLX.cpp +++ b/gfx/gl/GLContextProviderGLX.cpp @@ -937,7 +937,7 @@ GLContextGLX::MakeCurrentImpl(bool aForce) Unused << XPending(mDisplay); } if (IsDestroyed()) { - MOZ_ALWAYS_TRUE(mGLX->xMakeCurrent(mDisplay, X11None, nullptr); + MOZ_ALWAYS_TRUE(mGLX->xMakeCurrent(mDisplay, X11None, nullptr)); return false; // We did not MakeCurrent mContext, but that's what we wanted! }