diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-09-11 15:59:26 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-09-11 15:59:26 -0700 |
commit | 3ab24efeef37f9a148662f8de4412a72e754b69f (patch) | |
tree | 0db1f1ce448f920b229dad709d3633b75b7deb83 /refs.c | |
parent | 0e88c130f2f6309932464d4919725e54837978c7 (diff) | |
download | git-3ab24efeef37f9a148662f8de4412a72e754b69f.tar.gz |
refs.c: make create_cached_refs() static
There is nobody outside that calls into this helper function.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.c')
-rw-r--r-- | refs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -185,7 +185,7 @@ static void clear_cached_refs(struct cached_refs *ca) ca->did_loose = ca->did_packed = 0; } -struct cached_refs *create_cached_refs(const char *submodule) +static struct cached_refs *create_cached_refs(const char *submodule) { int len; struct cached_refs *refs; |