From: Jared Hance Date: Sun, 5 Sep 2010 19:36:33 +0000 (-0400) Subject: Fix whitespace issue in object.c X-Git-Tag: v1.7.3-rc0^2^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=55b4e9e43227632dd372f916c08dca6e26118af5;p=git.git Fix whitespace issue in object.c Change some expanded tabs (spaces) to tabs in object.c. Signed-off-by: Jared Hance Signed-off-by: Junio C Hamano --- diff --git a/object.c b/object.c index fe8eaaf19..a23fbeaeb 100644 --- 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,