@@ -49,7 +49,7 @@ void on_topic(
49
49
if ((custom_subscription -> datareader_id .id == object_id .id ) &&
50
50
(custom_subscription -> datareader_id .type == object_id .type ))
51
51
{
52
- custom_subscription -> micro_buffer_lenght [custom_subscription -> history_write_index ] = length ;
52
+ custom_subscription -> micro_buffer_length [custom_subscription -> history_write_index ] = length ;
53
53
ucdr_deserialize_array_uint8_t (
54
54
ub ,
55
55
custom_subscription -> micro_buffer [custom_subscription -> history_write_index ], length );
@@ -89,7 +89,7 @@ void on_request(
89
89
while (service_item != NULL ) {
90
90
rmw_uxrce_service_t * custom_service = (rmw_uxrce_service_t * )service_item -> data ;
91
91
if (custom_service -> request_id == request_id ) {
92
- custom_service -> micro_buffer_lenght [custom_service -> history_write_index ] = length ;
92
+ custom_service -> micro_buffer_length [custom_service -> history_write_index ] = length ;
93
93
ucdr_deserialize_array_uint8_t (
94
94
ub ,
95
95
custom_service -> micro_buffer [custom_service -> history_write_index ], length );
@@ -132,7 +132,7 @@ void on_reply(
132
132
while (client_item != NULL ) {
133
133
rmw_uxrce_client_t * custom_client = (rmw_uxrce_client_t * )client_item -> data ;
134
134
if (custom_client -> request_id == request_id ) {
135
- custom_client -> micro_buffer_lenght [custom_client -> history_write_index ] = length ;
135
+ custom_client -> micro_buffer_length [custom_client -> history_write_index ] = length ;
136
136
ucdr_deserialize_array_uint8_t (
137
137
ub ,
138
138
custom_client -> micro_buffer [custom_client -> history_write_index ], length );
0 commit comments