From a8f66206b9b6700151e513c6f8f3fcce844c15b3 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Wed, 10 Mar 2021 13:33:35 +0200 Subject: src/homescreen, hs-client, hs-proxy: Fix trivial unused warnings As we're now using Werror, need clean-up some trivial bits. Bug-AGL: SPEC-3843 Signed-off-by: Marius Vlad Change-Id: I17c7e61c0fd3b420a4c76fa40fe6486d2bad0c5e --- src/homescreen.cpp | 1 + src/hs-client.cpp | 2 ++ src/hs-proxy.cpp | 1 + 3 files changed, 4 insertions(+) diff --git a/src/homescreen.cpp b/src/homescreen.cpp index 65c0064..8470635 100644 --- a/src/homescreen.cpp +++ b/src/homescreen.cpp @@ -504,6 +504,7 @@ static const afb_verb_t verbs[]= { */ static int preinit(afb_api_t api) { + (void) api; AFB_DEBUG("binding preinit (was register)"); return 0; } diff --git a/src/hs-client.cpp b/src/hs-client.cpp index 9494f70..185b423 100644 --- a/src/hs-client.cpp +++ b/src/hs-client.cpp @@ -85,6 +85,8 @@ HS_Client::~HS_Client() */ int HS_Client::tap_shortcut(afb_req_t request) { + (void) request; + AFB_INFO("request appid = %s.", my_id.c_str()); struct json_object* push_obj = json_object_new_object(); hs_add_object_to_json_object_str( push_obj, 4, _application_id, my_id.c_str(), diff --git a/src/hs-proxy.cpp b/src/hs-proxy.cpp index aaa67c7..cdbf249 100644 --- a/src/hs-proxy.cpp +++ b/src/hs-proxy.cpp @@ -43,6 +43,7 @@ const char _afm_main[] = "afm-main"; static void api_callback(void *closure, struct json_object *object, const char *error, const char *info, afb_api_t api) { AFB_INFO("asynchronous call, error=%s, info=%s, object=%s.", error, info, json_object_get_string(object)); + (void) api; struct closure_data *cdata = static_cast(closure); if (!cdata->hs_instance) { -- cgit 1.2.3-korg