From 8e43ccc87bf4222e71daac0d9ff8b9658639eecb Mon Sep 17 00:00:00 2001 From: James Hogan Date: Sat, 30 Jul 2022 23:53:56 +0100 Subject: [PATCH] Compositor: Fix log message about shadow pass Fix a slightly messy log message about a pass not being a shadow pass, where there was no end quote or space after the pass name. --- simgear/scene/viewer/CompositorPass.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/scene/viewer/CompositorPass.cxx b/simgear/scene/viewer/CompositorPass.cxx index 8b782ac1..eac25e9c 100644 --- a/simgear/scene/viewer/CompositorPass.cxx +++ b/simgear/scene/viewer/CompositorPass.cxx @@ -226,7 +226,7 @@ PassBuilder::build(Compositor *compositor, const SGPropertyNode *root, cullcb->getLightMatrixUniform()); } else { SG_LOG(SG_INPUT, SG_WARN, "ScenePassBuilder::build: Pass '" - << shadow_pass_name << "is not a shadow pass"); + << shadow_pass_name << "' is not a shadow pass"); } } }