提交 52fae7de 编写于 作者: P Pierre Habouzit 提交者: Junio C Hamano

Missing statics.

Signed-off-by: NPierre Habouzit <madcoder@debian.org>
Signed-off-by: NJunio C Hamano <gitster@pobox.com>
上级 e1944f40
......@@ -55,7 +55,7 @@ static int parse_branch_color_slot(const char *var, int ofs)
die("bad config variable '%s'", var);
}
int git_branch_config(const char *var, const char *value)
static int git_branch_config(const char *var, const char *value)
{
if (!strcmp(var, "color.branch")) {
branch_use_color = git_config_colorbool(var, value);
......@@ -72,7 +72,7 @@ int git_branch_config(const char *var, const char *value)
return git_default_config(var, value);
}
const char *branch_get_color(enum color_branch ix)
static const char *branch_get_color(enum color_branch ix)
{
if (branch_use_color)
return branch_colors[ix];
......
......@@ -107,7 +107,7 @@ static char *get_oneline(const char *message)
return result;
}
char *get_encoding(const char *message)
static char *get_encoding(const char *message)
{
const char *p = message, *eol;
......
......@@ -439,7 +439,7 @@ static void parse_extra_args(struct interp *table, char *extra_args, int buflen)
}
}
void fill_in_extra_table_entries(struct interp *itable)
static void fill_in_extra_table_entries(struct interp *itable)
{
char *hp;
......
......@@ -198,7 +198,7 @@ static void wt_read_cache(struct wt_status *s)
read_cache();
}
void wt_status_print_initial(struct wt_status *s)
static void wt_status_print_initial(struct wt_status *s)
{
int i;
char buf[PATH_MAX];
......
......@@ -99,8 +99,8 @@ static void xdl_find_func(xdfile_t *xf, long i, char *buf, long sz, long *ll) {
}
int xdl_emit_common(xdfenv_t *xe, xdchange_t *xscr, xdemitcb_t *ecb,
xdemitconf_t const *xecfg) {
static int xdl_emit_common(xdfenv_t *xe, xdchange_t *xscr, xdemitcb_t *ecb,
xdemitconf_t const *xecfg) {
xdfile_t *xdf = &xe->xdf1;
const char *rchg = xdf->rchg;
long ix;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册