Skip to content

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hiikariri committed Jun 19, 2024
1 parent 30a554f commit b058dd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tachimawari_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ int main(int argc, char * argv[])
{
auto args = rclcpp::init_and_remove_ros_arguments(argc, argv);

if (argc < args.size()) {
if (args.size() < 2) {
std::cerr << "Please specify the mode! [sdk / cm740]" << std::endl;
return 0;
} else if (argc < 3) {
} else if (args.size() < 3) {
std::cerr << "Please specify the tf configuration path" << std::endl;
}

Expand Down

0 comments on commit b058dd4

Please sign in to comment.