summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-11-19 10:47:29 +0200
committerTor Lillqvist <tml@collabora.com>2015-11-19 10:54:38 +0200
commitc8a7887846754ee76a5558f4dd1e89994704ea2c (patch)
tree7c634386cf7bf4ac745746c09248be8006bdc964
parentcfaa269832db6243f828e18b012a13967a2937aa (diff)
Improve SAL_WARN message readability
Change-Id: Ia9e1ea7a69e372725a4239fad2630b6f8bcb52e2
-rw-r--r--vcl/source/opengl/OpenGLContext.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/opengl/OpenGLContext.cxx b/vcl/source/opengl/OpenGLContext.cxx
index 0c58120b8d78..d7d431372697 100644
--- a/vcl/source/opengl/OpenGLContext.cxx
+++ b/vcl/source/opengl/OpenGLContext.cxx
@@ -437,7 +437,7 @@ debug_callback(GLenum source, GLenum type, GLuint id,
return;
SAL_WARN("vcl.opengl", "OpenGL debug message: source: " << getSourceString(source) << ", type: "
- << getTypeString(type) << ", id: " << id << ", severity: " << getSeverityString(severity) << " with message: " << message);
+ << getTypeString(type) << ", id: " << id << ", severity: " << getSeverityString(severity) << ", with message: " << message);
}
}