Browse Source

Missing statics.

Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Pierre Habouzit 18 years ago committed by Junio C Hamano
parent
commit
52fae7de4e
  1. 4
      builtin-branch.c
  2. 2
      builtin-revert.c
  3. 2
      daemon.c
  4. 2
      wt-status.c
  5. 4
      xdiff/xemit.c

4
builtin-branch.c

@ -55,7 +55,7 @@ static int parse_branch_color_slot(const char *var, int ofs) @@ -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) @@ -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];

2
builtin-revert.c

@ -107,7 +107,7 @@ static char *get_oneline(const char *message) @@ -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;


2
daemon.c

@ -439,7 +439,7 @@ static void parse_extra_args(struct interp *table, char *extra_args, int buflen) @@ -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;


2
wt-status.c

@ -198,7 +198,7 @@ static void wt_read_cache(struct wt_status *s) @@ -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];

4
xdiff/xemit.c

@ -99,8 +99,8 @@ static void xdl_find_func(xdfile_t *xf, long i, char *buf, long sz, long *ll) { @@ -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;

Loading…
Cancel
Save