diff options
-rw-r--r-- | src/homescreen.cpp | 1 | ||||
-rw-r--r-- | src/hs-client.cpp | 2 | ||||
-rw-r--r-- | src/hs-proxy.cpp | 1 |
3 files changed, 4 insertions, 0 deletions
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<struct closure_data *>(closure); if (!cdata->hs_instance) { |