From 35ef237cf630418c2e45752eb527268693a2895b Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Sat, 26 Aug 2006 23:37:31 -0400 Subject: [PATCH] Fixed compile error in fast-import. Signed-off-by: Shawn O. Pearce --- fast-import.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2