From 7a14533d1a270bb7a57be16dce31235604d71e0b Mon Sep 17 00:00:00 2001 From: Marcus Fritzsch Date: Tue, 12 Sep 2017 11:29:31 +0200 Subject: misc: fix some minor style issues, fix SCOPE_TRACING compilation Signed-off-by: Marcus Fritzsch --- src/main.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index f14cf96..5b140f2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -50,7 +50,7 @@ int afb_instance::init() { return this->app.init(); } -int display_event_callback(sd_event_source *evs, int fd, uint32_t events, +int display_event_callback(sd_event_source *evs, int /*fd*/, uint32_t events, void * /*data*/) { ST(); @@ -83,8 +83,9 @@ int display_event_callback(sd_event_source *evs, int fd, uint32_t events, error: sd_event_source_unref(evs); - if (getenv("WINMAN_EXIT_ON_HANGUP") != nullptr) + if (getenv("WINMAN_EXIT_ON_HANGUP") != nullptr) { exit(1); +} return -1; } @@ -155,7 +156,7 @@ void binding_api::send_event(char const *evname, char const *label) { logdebug("afb_event_broadcast failed: %m"); } } -} +} // namespace wm extern "C" const struct afb_binding_v2 afbBindingV2 = { "winman", nullptr, nullptr, winman_verbs, nullptr, binding_init, nullptr, 0}; -- cgit 1.2.3-korg