@@ -49,7 +49,7 @@ void on_topic(
4949 if ((custom_subscription -> datareader_id .id == object_id .id ) &&
5050 (custom_subscription -> datareader_id .type == object_id .type ))
5151 {
52- custom_subscription -> micro_buffer_lenght [custom_subscription -> history_write_index ] = length ;
52+ custom_subscription -> micro_buffer_length [custom_subscription -> history_write_index ] = length ;
5353 ucdr_deserialize_array_uint8_t (
5454 ub ,
5555 custom_subscription -> micro_buffer [custom_subscription -> history_write_index ], length );
@@ -89,7 +89,7 @@ void on_request(
8989 while (service_item != NULL ) {
9090 rmw_uxrce_service_t * custom_service = (rmw_uxrce_service_t * )service_item -> data ;
9191 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 ;
9393 ucdr_deserialize_array_uint8_t (
9494 ub ,
9595 custom_service -> micro_buffer [custom_service -> history_write_index ], length );
@@ -132,7 +132,7 @@ void on_reply(
132132 while (client_item != NULL ) {
133133 rmw_uxrce_client_t * custom_client = (rmw_uxrce_client_t * )client_item -> data ;
134134 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 ;
136136 ucdr_deserialize_array_uint8_t (
137137 ub ,
138138 custom_client -> micro_buffer [custom_client -> history_write_index ], length );
0 commit comments