1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-23 21:56:10 +02:00

Fixed compile error in fast-import.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
Shawn O. Pearce 2006-08-26 23:37:31 -04:00
parent 2eb26d8454
commit 35ef237cf6

View File

@ -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;