File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ impl Node {
194
194
getter : unsafe extern "C" fn ( * const rcl_node_t ) -> * const c_char ,
195
195
) -> String {
196
196
let rcl_node = self . handle . rcl_node . lock ( ) . unwrap ( ) ;
197
- unsafe { call_string_getter_with_handle ( & rcl_node, getter) }
197
+ unsafe { call_string_getter_with_rcl_node ( & rcl_node, getter) }
198
198
}
199
199
200
200
/// Creates a [`Client`][1].
@@ -446,7 +446,7 @@ impl Node {
446
446
// function, which is why it's not merged into Node::call_string_getter().
447
447
// This function is unsafe since it's possible to pass in an rcl_node_t with dangling
448
448
// pointers etc.
449
- pub ( crate ) unsafe fn call_string_getter_with_handle (
449
+ pub ( crate ) unsafe fn call_string_getter_with_rcl_node (
450
450
rcl_node : & rcl_node_t ,
451
451
getter : unsafe extern "C" fn ( * const rcl_node_t ) -> * const c_char ,
452
452
) -> String {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ pub(crate) use override_map::*;
5
5
pub use value:: * ;
6
6
7
7
use crate :: rcl_bindings:: * ;
8
- use crate :: { call_string_getter_with_handle , RclrsError } ;
8
+ use crate :: { call_string_getter_with_rcl_node , RclrsError } ;
9
9
use std:: collections:: { btree_map:: Entry , BTreeMap } ;
10
10
use std:: fmt:: Debug ;
11
11
use std:: marker:: PhantomData ;
@@ -781,7 +781,7 @@ impl ParameterInterface {
781
781
global_arguments : & rcl_arguments_t ,
782
782
) -> Result < Self , RclrsError > {
783
783
let override_map = unsafe {
784
- let fqn = call_string_getter_with_handle ( rcl_node, rcl_node_get_fully_qualified_name) ;
784
+ let fqn = call_string_getter_with_rcl_node ( rcl_node, rcl_node_get_fully_qualified_name) ;
785
785
resolve_parameter_overrides ( & fqn, node_arguments, global_arguments) ?
786
786
} ;
787
787
You can’t perform that action at this time.
0 commit comments