Skip to content

Commit

Permalink
Fix whitespace issue in object.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jared Hance authored and Junio C Hamano committed Sep 6, 2010
1 parent 65b26eb commit 55b4e9e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions object.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 55b4e9e

Please sign in to comment.