Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJared Hance <jaredhance@gmail.com>2010-09-05 23:36:33 +0400
committerJunio C Hamano <gitster@pobox.com>2010-09-06 09:12:29 +0400
commit55b4e9e43227632dd372f916c08dca6e26118af5 (patch)
tree930cb387fe61a6cdb31a5f0280855c42b13b0f92
parent65b26eb4668f0499bc1e671edb59842529cb286d (diff)
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>
-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,