diff options
author | Jared Hance <jaredhance@gmail.com> | 2010-09-05 15:36:33 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-05 22:12:29 -0700 |
commit | 55b4e9e43227632dd372f916c08dca6e26118af5 (patch) | |
tree | 930cb387fe61a6cdb31a5f0280855c42b13b0f92 /object.c | |
parent | 65b26eb4668f0499bc1e671edb59842529cb286d (diff) | |
download | git-55b4e9e43227632dd372f916c08dca6e26118af5.tar.gz |
Fix whitespace issue in object.c
Change some expanded tabs (spaces) to tabs in object.c.
Signed-off-by: Jared Hance <jaredhance@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
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; } void object_list_append(struct object *item, |