index.c: Fix a sparse "symbol not declared" warning
commitd8a4b4e29640a5d772fc727a73b45054a012bfd4
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>
Tue, 12 Oct 2010 18:01:13 +0000 (12 19:01 +0100)
committerAndreas Ericsson <ae@op5.se>
Thu, 28 Oct 2010 17:24:01 +0000 (28 19:24 +0200)
tree7067d6d3c45b15a86293a378c0aaa3177ba72569
parente5ed3792f222beee3b27c8dd9fcccc6abfb8af58
index.c: Fix a sparse "symbol not declared" warning

In particular, sparse issues a warning about the declaration
of git_index__parse_tree(). However, I suspect that, at some
point, the git_index__parse_treecache() function (which does
not have a definition) was renamed and the declaration was
missed.  In order to suppress this warning, we simply change
the name of the function in the declaration from git_index\
__parse_treecache() to git_index__parse_tree().

Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
src/index.c