From 13991f85eabbf152434db28373b93339f04e1737 Mon Sep 17 00:00:00 2001 From: Rohan Garg Date: Tue, 4 Oct 2016 17:20:41 +0200 Subject: [PATCH] Fix the build 6199631604f9a654a2474ae55ccceafc5a87123f broke the build due to a missing bracket. --- plugins/platforms/x11/common/eglonxbackend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/platforms/x11/common/eglonxbackend.cpp b/plugins/platforms/x11/common/eglonxbackend.cpp index 43bf2649d8..78e0ce4de0 100644 --- a/plugins/platforms/x11/common/eglonxbackend.cpp +++ b/plugins/platforms/x11/common/eglonxbackend.cpp @@ -182,7 +182,7 @@ bool EglOnXBackend::initRenderingContext() if (havePlatformBase) { // Make sure that the X11 platform is supported if (!hasClientExtension(QByteArrayLiteral("EGL_EXT_platform_x11")) && - !hasClientExtension(QByteArrayLiteral("EGL_KHR_platform_x11")) { + !hasClientExtension(QByteArrayLiteral("EGL_KHR_platform_x11"))) { qCWarning(KWIN_CORE) << "EGL_EXT_platform_base is supported, but neither EGL_EXT_platform_x11 nor EGL_KHR_platform_x11 is supported." << "Cannot create EGLDisplay on X11"; return false;