Skip to content

Commit

Permalink
rtt_ros: fixed return value of ros.import() operation
Browse files Browse the repository at this point in the history
  • Loading branch information
meyerj committed Feb 10, 2014
1 parent a541d00 commit 5aa8761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtt_ros/src/rtt_ros_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ class ROSService : public RTT::Service {
}
}

return missing_packages.size() > 0;
return missing_packages.size() == 0;
}

};
Expand Down

0 comments on commit 5aa8761

Please sign in to comment.