aboutsummaryrefslogtreecommitdiff
path: root/fast-import.c
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2006-08-26 23:37:31 -0400
committerShawn O. Pearce <spearce@spearce.org>2007-01-14 02:15:08 -0500
commit35ef237cf630418c2e45752eb527268693a2895b (patch)
treeb544e7ac51b2e2f6e331b7d08c71bada04d7dd5d /fast-import.c
parent2eb26d8454de77f45bbbfc32eed2a6c3133fe963 (diff)
downloadgit-35ef237cf630418c2e45752eb527268693a2895b.tar.gz
git-35ef237cf630418c2e45752eb527268693a2895b.tar.xz
Fixed compile error in fast-import.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'fast-import.c')
-rw-r--r--fast-import.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fast-import.c b/fast-import.c
index 194116be6..309f4d353 100644
--- a/fast-import.c
+++ b/fast-import.c
@@ -524,7 +524,7 @@ static struct tree_entry* new_tree_entry()
*((void**)e) = e + 1;
e++;
}
- *((void*)e) = NULL;
+ *((void**)e) = NULL;
}
e = avail_tree_entry;