diff options
author | Nanako Shiraishi <nanako3@lavabit.com> | 2008-07-16 12:42:10 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-16 17:50:27 +0200 |
commit | 7ba04d9f3741abd5788ff713b6a16351cbf3773a (patch) | |
tree | 24adf2fd7c1f346a10bd0b387dc3bf2ee52e1a47 /cache-tree.c | |
parent | t/aggregate-results: whitespace fix (diff) | |
download | git-7ba04d9f3741abd5788ff713b6a16351cbf3773a.tar.xz git-7ba04d9f3741abd5788ff713b6a16351cbf3773a.zip |
cache-tree.c: make cache_tree_find() static
This function is not used by any other file.
Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache-tree.c')
-rw-r--r-- | cache-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cache-tree.c b/cache-tree.c index 73cb340707..5f8ee87bb1 100644 --- a/cache-tree.c +++ b/cache-tree.c @@ -507,7 +507,7 @@ struct cache_tree *cache_tree_read(const char *buffer, unsigned long size) return read_one(&buffer, &size); } -struct cache_tree *cache_tree_find(struct cache_tree *it, const char *path) +static struct cache_tree *cache_tree_find(struct cache_tree *it, const char *path) { while (*path) { const char *slash; |