summaryrefslogtreecommitdiff
path: root/ref-filter.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2017-07-13 15:02:52 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-07-13 19:42:51 (GMT)
commitaa8a5d144da4e4ec43580831ff4a741538d21db4 (patch)
treef80ac675f685cc75362a934212ac904b96bf870c /ref-filter.c
parent18a2565016d45538345a06cd9b912040b5581fc1 (diff)
downloadgit-aa8a5d144da4e4ec43580831ff4a741538d21db4.zip
git-aa8a5d144da4e4ec43580831ff4a741538d21db4.tar.gz
git-aa8a5d144da4e4ec43580831ff4a741538d21db4.tar.bz2
ref-filter: make parse_ref_filter_atom a private function
The parse_ref_filter_atom() function really shouldn't be exposed outside of ref-filter.c; its return value is an integer index into an array that is private in that file. Since the previous commit removed the sole external caller (and replaced it with a public function at a more appropriately level), we can just make this static. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ref-filter.c')
-rw-r--r--ref-filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ref-filter.c b/ref-filter.c
index 4321212..ee97d72 100644
--- a/ref-filter.c
+++ b/ref-filter.c
@@ -364,7 +364,7 @@ struct atom_value {
/*
* Used to parse format string and sort specifiers
*/
-int parse_ref_filter_atom(const char *atom, const char *ep)
+static int parse_ref_filter_atom(const char *atom, const char *ep)
{
const char *sp;
const char *arg;