summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-07-16 18:32:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-07-16 18:32:33 (GMT)
commitc9831bb09d090011a51d2645ab638cf956924513 (patch)
tree13e76cefde992120024bc06d1f18e00986e8169d /cache.h
parent6a5713b576c3e54388d58984b759e1215d425bcf (diff)
parent2a608391509dc5ea50c9b88e5b98dae6694d7011 (diff)
downloadgit-c9831bb09d090011a51d2645ab638cf956924513.zip
git-c9831bb09d090011a51d2645ab638cf956924513.tar.gz
git-c9831bb09d090011a51d2645ab638cf956924513.tar.bz2
Merge branch 'kb/path-max-must-go'
* kb/path-max-must-go: cache.h: rename cache_def_free to cache_def_clear
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index 6db3ae1..92fc9f1 100644
--- a/cache.h
+++ b/cache.h
@@ -1115,7 +1115,7 @@ struct cache_def {
int prefix_len_stat_func;
};
#define CACHE_DEF_INIT { STRBUF_INIT, 0, 0, 0 }
-static inline void cache_def_free(struct cache_def *cache)
+static inline void cache_def_clear(struct cache_def *cache)
{
strbuf_release(&cache->path);
}