提交 1b7edaf9 编写于 作者: M Michael Haggerty 提交者: Junio C Hamano

clear_ref_cache(): rename parameter

...for consistency with the rest of this module.
Signed-off-by: NMichael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: NJunio C Hamano <gitster@pobox.com>
上级 8be8bde7
......@@ -158,13 +158,13 @@ static void free_ref_array(struct ref_array *array)
array->refs = NULL;
}
static void clear_ref_cache(struct ref_cache *ca)
static void clear_ref_cache(struct ref_cache *refs)
{
if (ca->did_loose)
free_ref_array(&ca->loose);
if (ca->did_packed)
free_ref_array(&ca->packed);
ca->did_loose = ca->did_packed = 0;
if (refs->did_loose)
free_ref_array(&refs->loose);
if (refs->did_packed)
free_ref_array(&refs->packed);
refs->did_loose = refs->did_packed = 0;
}
static struct ref_cache *create_ref_cache(const char *submodule)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册