Merge branch 'maint'
* maint: tag.c: whitespace breakages fix Fix whitespace issue in object.c t5505: add missing &&
This commit is contained in:
8
object.c
8
object.c
@ -211,10 +211,10 @@ struct object_list *object_list_insert(struct object *item,
|
||||
struct object_list **list_p)
|
||||
{
|
||||
struct object_list *new_list = xmalloc(sizeof(struct object_list));
|
||||
new_list->item = item;
|
||||
new_list->next = *list_p;
|
||||
*list_p = new_list;
|
||||
return new_list;
|
||||
new_list->item = item;
|
||||
new_list->next = *list_p;
|
||||
*list_p = new_list;
|
||||
return new_list;
|
||||
}
|
||||
|
||||
int object_list_contains(struct object_list *list, struct object *obj)
|
||||
|
Reference in New Issue
Block a user