Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mm318 committed Dec 11, 2019
1 parent a176724 commit 0aee62d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rmw_connext_dynamic_cpp/src/functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
#include "rosidl_typesupport_introspection_c/visibility_control.h"

#include "rmw_connext_shared_cpp/shared_functions.hpp"
#include "rmw_connext_shared_cpp/topic_info.hpp"
#include "rmw_connext_shared_cpp/types.hpp"

#include "./macros.hpp"
Expand Down Expand Up @@ -2714,7 +2715,7 @@ rmw_get_publishers_info_by_topic(
bool no_mangle,
rmw_topic_info_array_t * publishers_info)
{
return get_publishers_info_by_topic(rti_connext_identifier, node, allocator, topic_name, no_mangle, publishers_info);
return get_publishers_info_by_topic(rti_connext_dynamic_identifier, node, allocator, topic_name, no_mangle, publishers_info);
}

rmw_ret_t
Expand All @@ -2725,7 +2726,7 @@ rmw_get_subscriptions_info_by_topic(
bool no_mangle,
rmw_topic_info_array_t * subscriptions_info)
{
return get_subscriptions_info_by_topic(rti_connext_identifier, node, allocator, topic_name, no_mangle, subscriptions_info);
return get_subscriptions_info_by_topic(rti_connext_dynamic_identifier, node, allocator, topic_name, no_mangle, subscriptions_info);
}

rmw_ret_t
Expand Down

0 comments on commit 0aee62d

Please sign in to comment.