src/homescreen, hs-client, hs-proxy: Fix trivial unused warnings 52/26152/1 11.91.0 lamprey/11.91.0 lamprey_11.91.0
authorMarius Vlad <marius.vlad@collabora.com>
Wed, 10 Mar 2021 11:33:35 +0000 (13:33 +0200)
committerMarius Vlad <marius.vlad@collabora.com>
Wed, 10 Mar 2021 12:40:00 +0000 (14:40 +0200)
As we're now using Werror, need clean-up some trivial bits.

Bug-AGL: SPEC-3843

Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I17c7e61c0fd3b420a4c76fa40fe6486d2bad0c5e

src/homescreen.cpp
src/hs-client.cpp
src/hs-proxy.cpp

index 65c0064..8470635 100644 (file)
@@ -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;
 }
index 9494f70..185b423 100644 (file)
@@ -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(),
index aaa67c7..cdbf249 100644 (file)
@@ -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<struct closure_data *>(closure);
 
     if (!cdata->hs_instance) {