Skip to content

Commit

Permalink
missing space
Browse files Browse the repository at this point in the history
Signed-off-by: Dharini Dutia <[email protected]>
  • Loading branch information
quarkytale committed Jun 17, 2022
1 parent 5b2fdf7 commit b69f03c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdformat_urdf/src/sdformat_urdf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ sdformat_urdf::convert_joint(const sdf::Joint & sdf_joint, sdf::Errors & errors)
if ((urdf::Joint::FIXED != urdf_joint->type) && (urdf::Joint::FLOATING != urdf_joint->type)) {
// Add axis info for non-fixed and non-floating joints
const sdf::JointAxis * sdf_axis = sdf_joint.Axis(0);
if(nullptr == sdf_axis) {
if (nullptr == sdf_axis) {
errors.emplace_back(
sdf::ErrorCode::STRING_READ,
"Axes missing for joint [" + sdf_joint.Name() + "]");
Expand Down

0 comments on commit b69f03c

Please sign in to comment.