diff options
author | Stephan Beyer <s-beyer@gmx.net> | 2008-07-24 01:09:35 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-23 18:38:14 -0700 |
commit | 186458b11b090835fa793bcdbf6b5552b053276c (patch) | |
tree | 5e1fa9156b954b0c05c1d0963c6db91a2d347d67 /builtin-for-each-ref.c | |
parent | 0c4cd7f4a7aae5527560090aad7ef8dae85f1264 (diff) | |
download | git-186458b11b090835fa793bcdbf6b5552b053276c.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-for-each-ref.c b/builtin-for-each-ref.c index 76282ad791..445039e19c 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; |