diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-09-06 00:12:04 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-06 00:12:04 -0700 |
commit | 4682693e9ccc04252d0fad6f5627fc056abcdbba (patch) | |
tree | cfd7ed7e969a2f461d24a111187613cb9ba87f9a /object.c | |
parent | 02377cf4bc6050cdbf600ce65114a5438b049763 (diff) | |
parent | af24059fa299f1656692f5807eddd3b30b5f3cfb (diff) | |
download | git-4682693e9ccc04252d0fad6f5627fc056abcdbba.tar.gz |
Merge branch 'maint'v1.7.3-rc0
* maint:
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) |