From 892d74ffa169097f9ab3fd642f875993e243d445 Mon Sep 17 00:00:00 2001 From: Julien Enoch Date: Wed, 5 Jun 2024 19:47:16 +0200 Subject: [PATCH] code style --- rmw_zenoh_cpp/src/zenohd/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rmw_zenoh_cpp/src/zenohd/main.cpp b/rmw_zenoh_cpp/src/zenohd/main.cpp index 9102b03f..e353614b 100644 --- a/rmw_zenoh_cpp/src/zenohd/main.cpp +++ b/rmw_zenoh_cpp/src/zenohd/main.cpp @@ -173,7 +173,7 @@ void quit(int sig) static const char * LOG_ENV_VAR = "RUST_LOG"; // Values for this environment variables depending the verbosity level static const int LOG_LEVEL_MAX = 3; -static const char * LOG_LEVELS[LOG_LEVEL_MAX+1] = { +static const char * LOG_LEVELS[LOG_LEVEL_MAX + 1] = { // 0: only error logs "zenoh=error", // 1: add warning and info logs @@ -191,7 +191,7 @@ static const struct option LONG_OPTS[] = { {nullptr, 0, nullptr, 0} }; -void print_usage(const char* progname) +void print_usage(const char * progname) { printf("Usage: %s [-h|--help] [-v]\n", progname); printf("Options:\n");