Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions rclcpp/actions/minimal_action_client/member_functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,8 @@ class MinimalActionClient : public rclcpp::Node
rclcpp::TimerBase::SharedPtr timer_;
bool goal_done_;

void goal_response_callback(std::shared_future<GoalHandleFibonacci::SharedPtr> future)
void goal_response_callback(GoalHandleFibonacci::SharedPtr goal_handle)
{
auto goal_handle = future.get();
if (!goal_handle) {
RCLCPP_ERROR(this->get_logger(), "Goal was rejected by server");
} else {
Expand Down