config.c: make git_parse_long() static
This function is not used in any other file. Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
parent
7996ff335e
commit
0433bcd9f0
1
cache.h
1
cache.h
@ -749,7 +749,6 @@ typedef int (*config_fn_t)(const char *, const char *, void *);
|
|||||||
extern int git_default_config(const char *, const char *, void *);
|
extern int git_default_config(const char *, const char *, void *);
|
||||||
extern int git_config_from_file(config_fn_t fn, const char *, void *);
|
extern int git_config_from_file(config_fn_t fn, const char *, void *);
|
||||||
extern int git_config(config_fn_t fn, void *);
|
extern int git_config(config_fn_t fn, void *);
|
||||||
extern int git_parse_long(const char *, long *);
|
|
||||||
extern int git_parse_ulong(const char *, unsigned long *);
|
extern int git_parse_ulong(const char *, unsigned long *);
|
||||||
extern int git_config_int(const char *, const char *);
|
extern int git_config_int(const char *, const char *);
|
||||||
extern unsigned long git_config_ulong(const char *, const char *);
|
extern unsigned long git_config_ulong(const char *, const char *);
|
||||||
|
4
config.c
4
config.c
@ -274,7 +274,7 @@ static int parse_unit_factor(const char *end, unsigned long *val)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int git_parse_long(const char *value, long *ret)
|
static int git_parse_long(const char *value, long *ret)
|
||||||
{
|
{
|
||||||
if (value && *value) {
|
if (value && *value) {
|
||||||
char *end;
|
char *end;
|
||||||
@ -310,7 +310,7 @@ static void die_bad_config(const char *name)
|
|||||||
|
|
||||||
int git_config_int(const char *name, const char *value)
|
int git_config_int(const char *name, const char *value)
|
||||||
{
|
{
|
||||||
long ret;
|
long ret = 0;
|
||||||
if (!git_parse_long(value, &ret))
|
if (!git_parse_long(value, &ret))
|
||||||
die_bad_config(name);
|
die_bad_config(name);
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user