aboutsummaryrefslogtreecommitdiff
path: root/builtin-for-each-ref.c
diff options
context:
space:
mode:
authorStephan Beyer <s-beyer@gmx.net>2008-07-24 01:09:35 +0200
committerJunio C Hamano <gitster@pobox.com>2008-07-23 18:38:14 -0700
commit186458b11b090835fa793bcdbf6b5552b053276c (patch)
tree5e1fa9156b954b0c05c1d0963c6db91a2d347d67 /builtin-for-each-ref.c
parent0c4cd7f4a7aae5527560090aad7ef8dae85f1264 (diff)
downloadgit-186458b11b090835fa793bcdbf6b5552b053276c.tar.gz
git-186458b11b090835fa793bcdbf6b5552b053276c.tar.xz
Make non-static functions, that may be static, static
Signed-off-by: Stephan Beyer <s-beyer@gmx.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-for-each-ref.c')
-rw-r--r--builtin-for-each-ref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-for-each-ref.c b/builtin-for-each-ref.c
index 76282ad79..445039e19 100644
--- a/builtin-for-each-ref.c
+++ b/builtin-for-each-ref.c
@@ -809,7 +809,7 @@ static struct ref_sort *default_sort(void)
return sort;
}
-int opt_parse_sort(const struct option *opt, const char *arg, int unset)
+static int opt_parse_sort(const struct option *opt, const char *arg, int unset)
{
struct ref_sort **sort_tail = opt->value;
struct ref_sort *s;