Skip to content

Commit

Permalink
Fix C++ format warning
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyZe committed Jul 29, 2024
1 parent 64010e4 commit 5f4d674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/example_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ int main(int argc, char** argv)
// Wait for the result.
if (rclcpp::spin_until_future_complete(node, result) == rclcpp::FutureReturnCode::SUCCESS)
{
RCLCPP_INFO(rclcpp::get_logger("rclcpp"), "Response: %b", result.get()->bool_response);
RCLCPP_INFO(rclcpp::get_logger("rclcpp"), "Response: %d", result.get()->bool_response);
}
else
{
Expand Down

0 comments on commit 5f4d674

Please sign in to comment.