Skip to content

Commit

Permalink
Fix clang warning, typo
Browse files Browse the repository at this point in the history
Signed-off-by: Louise Poubel <louise@openrobotics.org>
  • Loading branch information
chapulina authored Dec 22, 2020
1 parent 154139b commit 3019d67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/plugins/scene3d/Scene3D.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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 <lockstep> value: "
ignerr << "Failed to parse <lockstep> value: "
<< lockstepElem->GetText() << std::endl;
}
else
Expand Down

0 comments on commit 3019d67

Please sign in to comment.