Fix Coverity complaint 45/249145/2
authorMichal Bloch <m.bloch@partner.samsung.com>
Mon, 7 Dec 2020 19:56:16 +0000 (19:56 +0000)
committerMichal Bloch <m.bloch@partner.samsung.com>
Mon, 7 Dec 2020 19:57:44 +0000 (19:57 +0000)
Return value unchecked, but there is nothing we can do about the value.

Change-Id: Idceef9dc7577337f7b12eb20f00cf37443b35da5

src/runtime_info_vconf.c

index f39bdad..d60a241 100644 (file)
@@ -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);
 }