diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-21 21:23:46 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-21 21:23:46 +0100 |
commit | fabe21d593bd09e50ffc9932b074305f15d5409a (patch) | |
tree | c90a98eeb2270f3cdd2362e55a6938148fd641b7 /gfx | |
parent | c6dbf554496191a0cfe4c8f5dbe8c96031d1445b (diff) | |
download | uxp-fabe21d593bd09e50ffc9932b074305f15d5409a.tar.gz |
Issue #1354 - Fix typo
Diffstat (limited to 'gfx')
-rw-r--r-- | gfx/gl/GLContextProviderGLX.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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! } |