Skip to content

Commit 5f4d674

Browse files
committed
Fix C++ format warning
1 parent 64010e4 commit 5f4d674

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/example_client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ int main(int argc, char** argv)
4141
// Wait for the result.
4242
if (rclcpp::spin_until_future_complete(node, result) == rclcpp::FutureReturnCode::SUCCESS)
4343
{
44-
RCLCPP_INFO(rclcpp::get_logger("rclcpp"), "Response: %b", result.get()->bool_response);
44+
RCLCPP_INFO(rclcpp::get_logger("rclcpp"), "Response: %d", result.get()->bool_response);
4545
}
4646
else
4747
{

0 commit comments

Comments
 (0)