eolian: silence return checking in lexer

Coverity CID1396970.
This commit is contained in:
Daniel Kolesa 2019-08-05 15:39:43 +02:00
parent 80fb8727b5
commit 3c7e1c9767
1 changed files with 1 additions and 1 deletions

View File

@ -1130,7 +1130,7 @@ eo_lexer_node_release(Eo_Lexer *ls, Eolian_Object *obj)
{
/* just for debug */
assert(eina_hash_find(ls->nodes, &obj) && (obj->refcount >= 1));
eolian_object_unref(obj);
(void)eolian_object_unref(obj);
eina_hash_set(ls->nodes, &obj, NULL);
return obj;
}