From a3305c347d153671a6b89acca07603cf093a63d1 Mon Sep 17 00:00:00 2001 From: Michal Bloch Date: Mon, 7 Dec 2020 19:56:16 +0000 Subject: [PATCH] Fix Coverity complaint Return value unchecked, but there is nothing we can do about the value. Change-Id: Idceef9dc7577337f7b12eb20f00cf37443b35da5 --- src/runtime_info_vconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime_info_vconf.c b/src/runtime_info_vconf.c index f39bdad..d60a241 100644 --- a/src/runtime_info_vconf.c +++ b/src/runtime_info_vconf.c @@ -136,5 +136,5 @@ void runtime_info_vconf_unset_event_cb(const char *vconf_key, int slot) vconf_event_cb = runtime_info_vconf_get_event_cb_slot(slot); if (vconf_event_cb != NULL) - vconf_ignore_key_changed(vconf_key, vconf_event_cb); + (void) vconf_ignore_key_changed(vconf_key, vconf_event_cb); } -- 2.7.4