]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Fix whitespace issue in object.c
authorJared Hance <jaredhance@gmail.com>
Sun, 5 Sep 2010 19:36:33 +0000 (15:36 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 6 Sep 2010 05:12:29 +0000 (22:12 -0700)
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>
object.c

index fe8eaaf19f71b48d9acba83594d918fc4875f5c4..a23fbeaebb530fd434845182113d5a494589ebb1 100644 (file)
--- a/object.c
+++ b/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;
 }
 
 void object_list_append(struct object *item,