summaryrefslogtreecommitdiffstats
path: root/object.c
diff options
context:
space:
mode:
authorJared Hance <jaredhance@gmail.com>2010-09-05 21:36:33 +0200
committerJunio C Hamano <gitster@pobox.com>2010-09-06 07:12:29 +0200
commit55b4e9e43227632dd372f916c08dca6e26118af5 (patch)
tree930cb387fe61a6cdb31a5f0280855c42b13b0f92 /object.c
parentt5505: add missing && (diff)
downloadgit-55b4e9e43227632dd372f916c08dca6e26118af5.tar.xz
git-55b4e9e43227632dd372f916c08dca6e26118af5.zip
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 fe8eaaf19f..a23fbeaebb 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,