diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-09-06 09:11:59 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-06 09:11:59 +0200 |
commit | af24059fa299f1656692f5807eddd3b30b5f3cfb (patch) | |
tree | c5e12eb4c91edd04e9c8fea6408678c5660946e4 /object.c | |
parent | Git 1.7.2.3 (diff) | |
parent | tag.c: whitespace breakages fix (diff) | |
download | git-af24059fa299f1656692f5807eddd3b30b5f3cfb.tar.xz git-af24059fa299f1656692f5807eddd3b30b5f3cfb.zip |
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) |