diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2006-08-26 23:37:31 -0400 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-01-14 02:15:08 -0500 |
commit | 35ef237cf630418c2e45752eb527268693a2895b (patch) | |
tree | b544e7ac51b2e2f6e331b7d08c71bada04d7dd5d /fast-import.c | |
parent | Fixed GPF in fast-import caused by unterminated linked list. (diff) | |
download | tgif-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fast-import.c b/fast-import.c index 194116be6f..309f4d353b 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; |