Browse Source

Merge branch 'rr/misc-fixes'

* rr/misc-fixes:
  convert.c: Fix return type of git_path_check_eol()
maint
Junio C Hamano 13 years ago
parent
commit
0f64a5a3a2
  1. 2
      convert.c

2
convert.c

@ -658,7 +658,7 @@ static enum crlf_action git_path_check_crlf(const char *path, struct git_attr_ch @@ -658,7 +658,7 @@ static enum crlf_action git_path_check_crlf(const char *path, struct git_attr_ch
return CRLF_GUESS;
}

static enum crlf_action git_path_check_eol(const char *path, struct git_attr_check *check)
static enum eol git_path_check_eol(const char *path, struct git_attr_check *check)
{
const char *value = check->value;


Loading…
Cancel
Save