summaryrefslogtreecommitdiffstats
path: root/src/core/gl_surface_qt.cpp
diff options
context:
space:
mode:
authorAkihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp>2016-05-31 13:37:03 +0900
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2016-06-01 09:11:23 +0000
commit1897f28eb8ddf4b89c144c0503d004595fe8fcc2 (patch)
treeace2a0538f6baec07a0d4858a44b04f513b1a9da /src/core/gl_surface_qt.cpp
parent8ec03692c61b69ee035e9e48a96f826105cd5348 (diff)
Fix logging code in GLSurfaceQtEGL::Initialize()
Change-Id: I98cb984548d833121d7e3102b9d89ccc7c8a11b6 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'src/core/gl_surface_qt.cpp')
-rw-r--r--src/core/gl_surface_qt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gl_surface_qt.cpp b/src/core/gl_surface_qt.cpp
index 7596fcaff..62d6dd180 100644
--- a/src/core/gl_surface_qt.cpp
+++ b/src/core/gl_surface_qt.cpp
@@ -413,7 +413,7 @@ bool GLSurfaceQtEGL::Initialize()
g_config,
pbuffer_attributes);
if (!m_surfaceBuffer) {
- LOG(ERROR) << "eglCreatePbufferSurface failed with error ", GetLastEGLErrorString();
+ LOG(ERROR) << "eglCreatePbufferSurface failed with error " << GetLastEGLErrorString();
Destroy();
return false;
}