Skip to content

Commit

Permalink
fixed mispelled name.
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco authored and wxmerkt committed Nov 21, 2022
1 parent 5e31625 commit b7175fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apriltag_ros/src/common_functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ AprilTagDetectionArray TagDetector::detectTags (
int TagDetector::idComparison (const void* first, const void* second)
{
int id1 = (*(apriltag_detection_t**)first)->id;
int id2 = (*(apriltag_detection_t**)first)->id;
int id2 = (*(apriltag_detection_t**)second)->id;
return (id1 < id2) ? -1 : ((id1 == id2) ? 0 : 1);
}

Expand Down

0 comments on commit b7175fc

Please sign in to comment.