summaryrefslogtreecommitdiffstats
path: root/commit.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-08-25 23:46:52 +0200
committerJunio C Hamano <gitster@pobox.com>2011-08-25 23:47:07 +0200
commitcd2b8ae983a277fb3f3c2b2c6747b0a075af1421 (patch)
treed10d93857bb2711fd4ec7addf13254f01ba9556b /commit.c
parentupdate-ref: whitespace fix (diff)
downloadgit-cd2b8ae983a277fb3f3c2b2c6747b0a075af1421.tar.xz
git-cd2b8ae983a277fb3f3c2b2c6747b0a075af1421.zip
whitespace: have SP on both sides of an assignment "="
I've deliberately excluded the borrowed code in compat/nedmalloc directory. Signed-off-by: Junio C Hamano <gitster@pobox.com>
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;