Skip to content

Commit

Permalink
Merge branch 'rr/misc-fixes'
Browse files Browse the repository at this point in the history
* rr/misc-fixes:
  convert.c: Fix return type of git_path_check_eol()
  • Loading branch information
gitster committed Nov 21, 2011
2 parents 05bab3e + ef563de commit 0f64a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion convert.c
Expand Up @@ -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;

Expand Down

0 comments on commit 0f64a5a

Please sign in to comment.