aboutsummaryrefslogtreecommitdiffstats
path: root/commit.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-08-25 16:00:07 -0700
committerJunio C Hamano <gitster@pobox.com>2011-08-25 16:00:07 -0700
commit1952e102b702b977d6bdfcee7cb48b843cb92049 (patch)
tree33dc912c82c724e819bbf735acd9ef362ed68dfc /commit.c
parentSync with 1.7.6.1 (diff)
parentwhitespace: have SP on both sides of an assignment "=" (diff)
downloadgit-1952e102b702b977d6bdfcee7cb48b843cb92049.tar.gz
git-1952e102b702b977d6bdfcee7cb48b843cb92049.zip
Merge branch 'maint'
* maint: whitespace: have SP on both sides of an assignment "=" update-ref: whitespace fix
Diffstat (limited to 'commit.c')
-rw-r--r--commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit.c b/commit.c
index ac337c7d7d..913dbabd1c 100644
--- a/commit.c
+++ b/commit.c
@@ -515,7 +515,7 @@ void sort_in_topological_order(struct commit_list ** list, int lifo)
commit = work_item->item;
for (parents = commit->parents; parents ; parents = parents->next) {
- struct commit *parent=parents->item;
+ struct commit *parent = parents->item;
if (!parent->indegree)
continue;