aboutsummaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authorJared Hance <jaredhance@gmail.com>2010-09-05 15:36:33 -0400
committerJunio C Hamano <gitster@pobox.com>2010-09-05 22:12:29 -0700
commit55b4e9e43227632dd372f916c08dca6e26118af5 (patch)
tree930cb387fe61a6cdb31a5f0280855c42b13b0f92 /object.c
parent65b26eb4668f0499bc1e671edb59842529cb286d (diff)
downloadgit-55b4e9e43227632dd372f916c08dca6e26118af5.tar.gz
git-55b4e9e43227632dd372f916c08dca6e26118af5.tar.xz
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.c8
1 files changed, 4 insertions, 4 deletions
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,