From: Matthieu Castet Date: Sun, 13 May 2007 18:57:00 +0000 (-0700) Subject: Remove stale non-static-inline prototype for tree_entry_extract() X-Git-Tag: v1.5.1.5~21 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0ab311d60108f8d93dbcac53623e8e593901b5ea;p=git.git Remove stale non-static-inline prototype for tree_entry_extract() When 4651ece8 made the function a "static inline", it should have removd the stale prototype but everybody missed that. Thomas Glanzmann noticed this broke compilation with Forte12 compiler on his Sun boxes. Signed-off-by: Junio C Hamano --- diff --git a/tree-walk.h b/tree-walk.h index 43458cf8c..ee747aba0 100644 --- a/tree-walk.h +++ b/tree-walk.h @@ -27,7 +27,6 @@ static inline int tree_entry_len(const char *name, const unsigned char *sha1) void update_tree_entry(struct tree_desc *); void init_tree_desc(struct tree_desc *desc, const void *buf, unsigned long size); -const unsigned char *tree_entry_extract(struct tree_desc *, const char **, unsigned int *); /* Helper function that does both of the above and returns true for success */ int tree_entry(struct tree_desc *, struct name_entry *);