diff options
author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2013-10-06 21:48:29 +0100 |
---|---|---|
committer | Jonathan Nieder <jrnieder@gmail.com> | 2013-10-14 16:00:37 -0700 |
commit | 0b4dc66169da5040951c6f575978c4b962934f94 (patch) | |
tree | 28150646a5ed8b0484cc4e6847912462b2a93611 | |
parent | CodingGuidelines: style for multi-line comments (diff) | |
download | tgif-0b4dc66169da5040951c6f575978c4b962934f94.tar.xz |
config.c: mark file-local function static
Commit 7192777 refactors git_parse_ulong, which is public, into a more
generic function. But since we kept the git_parse_ulong wrapper, only
that part needs to be public; nobody outside the file calls the
lower-level git_parse_unsigned.
Noticed with sparse. ("'git_parse_unsigned' was not declared. Should
it be static?")
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Explained-by: Jeff King <peff@peff.net>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -498,7 +498,7 @@ static int git_parse_signed(const char *value, intmax_t *ret, intmax_t max) return 0; } -int git_parse_unsigned(const char *value, uintmax_t *ret, uintmax_t max) +static int git_parse_unsigned(const char *value, uintmax_t *ret, uintmax_t max) { if (value && *value) { char *end; |