@@ -1833,7 +1833,7 @@ rclc_executor_spin_some(rclc_executor_t * executor, const uint64_t timeout_ns)
18331833 if (rc == RCL_RET_OK ) {
18341834 RCUTILS_LOG_DEBUG_NAMED (
18351835 ROS_PACKAGE_NAME ,
1836- "Subscription added to wait_set_subscription[%ld ]" ,
1836+ "Subscription added to wait_set_subscription[%d ]" ,
18371837 executor -> handles [i ].index );
18381838 } else {
18391839 PRINT_RCLC_ERROR (rclc_executor_spin_some , rcl_wait_set_add_subscription );
@@ -1849,7 +1849,7 @@ rclc_executor_spin_some(rclc_executor_t * executor, const uint64_t timeout_ns)
18491849 & executor -> handles [i ].index );
18501850 if (rc == RCL_RET_OK ) {
18511851 RCUTILS_LOG_DEBUG_NAMED (
1852- ROS_PACKAGE_NAME , "Timer added to wait_set_timers[%ld ]" ,
1852+ ROS_PACKAGE_NAME , "Timer added to wait_set_timers[%d ]" ,
18531853 executor -> handles [i ].index );
18541854 } else {
18551855 PRINT_RCLC_ERROR (rclc_executor_spin_some , rcl_wait_set_add_timer );
@@ -1866,7 +1866,7 @@ rclc_executor_spin_some(rclc_executor_t * executor, const uint64_t timeout_ns)
18661866 & executor -> handles [i ].index );
18671867 if (rc == RCL_RET_OK ) {
18681868 RCUTILS_LOG_DEBUG_NAMED (
1869- ROS_PACKAGE_NAME , "Service added to wait_set_service[%ld ]" ,
1869+ ROS_PACKAGE_NAME , "Service added to wait_set_service[%d ]" ,
18701870 executor -> handles [i ].index );
18711871 } else {
18721872 PRINT_RCLC_ERROR (rclc_executor_spin_some , rcl_wait_set_add_service );
@@ -1884,7 +1884,7 @@ rclc_executor_spin_some(rclc_executor_t * executor, const uint64_t timeout_ns)
18841884 & executor -> handles [i ].index );
18851885 if (rc == RCL_RET_OK ) {
18861886 RCUTILS_LOG_DEBUG_NAMED (
1887- ROS_PACKAGE_NAME , "Client added to wait_set_client[%ld ]" ,
1887+ ROS_PACKAGE_NAME , "Client added to wait_set_client[%d ]" ,
18881888 executor -> handles [i ].index );
18891889 } else {
18901890 PRINT_RCLC_ERROR (rclc_executor_spin_some , rcl_wait_set_add_client );
@@ -1900,7 +1900,7 @@ rclc_executor_spin_some(rclc_executor_t * executor, const uint64_t timeout_ns)
19001900 & executor -> handles [i ].index );
19011901 if (rc == RCL_RET_OK ) {
19021902 RCUTILS_LOG_DEBUG_NAMED (
1903- ROS_PACKAGE_NAME , "Guard_condition added to wait_set_client[%ld ]" ,
1903+ ROS_PACKAGE_NAME , "Guard_condition added to wait_set_client[%d ]" ,
19041904 executor -> handles [i ].index );
19051905 } else {
19061906 PRINT_RCLC_ERROR (rclc_executor_spin_some , rcl_wait_set_add_guard_condition );
@@ -1932,7 +1932,7 @@ rclc_executor_spin_some(rclc_executor_t * executor, const uint64_t timeout_ns)
19321932 if (rc == RCL_RET_OK ) {
19331933 RCUTILS_LOG_DEBUG_NAMED (
19341934 ROS_PACKAGE_NAME ,
1935- "Action server added to wait_set_action_servers[%ld ]" ,
1935+ "Action server added to wait_set_action_servers[%d ]" ,
19361936 executor -> handles [i ].index );
19371937 } else {
19381938 PRINT_RCLC_ERROR (rclc_executor_spin_some , rcl_wait_set_add_action_server );
@@ -1977,7 +1977,7 @@ rclc_executor_spin(rclc_executor_t * executor)
19771977 rcl_ret_t ret = RCL_RET_OK ;
19781978 RCUTILS_LOG_DEBUG_NAMED (
19791979 ROS_PACKAGE_NAME ,
1980- "INFO: rcl_wait timeout %ld ms" ,
1980+ "INFO: rcl_wait timeout %lld ms" ,
19811981 ((executor -> timeout_ns / 1000 ) / 1000 ));
19821982 while (true) {
19831983 ret = rclc_executor_spin_some (executor , executor -> timeout_ns );
0 commit comments