From 3019d67e17a205de89585ed92e3ee9f49d3ea99c Mon Sep 17 00:00:00 2001 From: Louise Poubel Date: Mon, 21 Dec 2020 18:45:21 -0800 Subject: [PATCH] Fix clang warning, typo Signed-off-by: Louise Poubel --- src/gui/plugins/scene3d/Scene3D.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/plugins/scene3d/Scene3D.cc b/src/gui/plugins/scene3d/Scene3D.cc index bb8aaed82c..99bbe5b7d4 100644 --- a/src/gui/plugins/scene3d/Scene3D.cc +++ b/src/gui/plugins/scene3d/Scene3D.cc @@ -585,7 +585,7 @@ void IgnRenderer::Render() msgs::Time msg; msg.set_sec(sec); msg.set_nsec(nsec); - this-dataPtr->recorderStatsPub.Publish(msg); + this->dataPtr->recorderStatsPub.Publish(msg); } } // Video recorder is idle. Start recording. @@ -2496,7 +2496,7 @@ void Scene3D::LoadConfig(const tinyxml2::XMLElement *_pluginElem) bool lockstep = false; if (lockstepElem->QueryBoolText(&lockstep) != tinyxml2::XML_SUCCESS) { - ignerr << "Faild to parse value: " + ignerr << "Failed to parse value: " << lockstepElem->GetText() << std::endl; } else