-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Hello,
my question could be stupid, and due to a lack of knowledge.
In fuction
/----------------------------------------------------------
| Check if an object is contained in a provided list
----------------------------------------------------------/
static inline tmBool OBJ_IN_LIST(void *obj, tmList *list)
{
tmListNode *cur;
for (cur = list->first; cur != NULL; cur = cur->next)
if ( cur->value == obj )
return TRUE;
return FALSE;
error:
return -1;
}
what is
"error: "
at the end of the function?
Thanks
Giovanni
Metadata
Metadata
Assignees
Labels
No labels