From 35674eb17494ab3f67cc5fbe5f127c614be2220b Mon Sep 17 00:00:00 2001 From: Dirk Thomas Date: Mon, 3 Feb 2020 09:06:13 -0800 Subject: [PATCH] code style only: wrap after open parenthesis if not in one line (#259) Signed-off-by: Dirk Thomas --- rclcpp/minimal_client/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rclcpp/minimal_client/main.cpp b/rclcpp/minimal_client/main.cpp index 0dc4642e..fecd98c8 100644 --- a/rclcpp/minimal_client/main.cpp +++ b/rclcpp/minimal_client/main.cpp @@ -43,7 +43,8 @@ int main(int argc, char * argv[]) return 1; } auto result = result_future.get(); - RCLCPP_INFO(node->get_logger(), "result of %" PRId64 " + %" PRId64 " = %" PRId64, + RCLCPP_INFO( + node->get_logger(), "result of %" PRId64 " + %" PRId64 " = %" PRId64, request->a, request->b, result->sum); rclcpp::shutdown(); return 0;