diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-09-06 00:11:59 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-06 00:11:59 -0700 |
commit | af24059fa299f1656692f5807eddd3b30b5f3cfb (patch) | |
tree | c5e12eb4c91edd04e9c8fea6408678c5660946e4 /object.c | |
parent | dd34b6be8a3e869f3e0d62a13115f02d90cf4f80 (diff) | |
parent | d2c030d4773f1f00165bffc34e2487043df326e7 (diff) | |
download | git-af24059fa299f1656692f5807eddd3b30b5f3cfb.tar.gz |
Merge branch 'xx/trivial' into maint
* xx/trivial:
tag.c: whitespace breakages fix
Fix whitespace issue in object.c
t5505: add missing &&
Diffstat (limited to 'object.c')
-rw-r--r-- | object.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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) |