Code

Merge branch 'rr/misc-fixes'
authorJunio C Hamano <gitster@pobox.com>
Mon, 21 Nov 2011 19:03:20 +0000 (11:03 -0800)
committerJunio C Hamano <gitster@pobox.com>
Mon, 21 Nov 2011 19:03:20 +0000 (11:03 -0800)
* rr/misc-fixes:
  convert.c: Fix return type of git_path_check_eol()

convert.c

index 038b0be61723439844830f35ed2c72ab552769ba..86e9c29ec05139844ff46868e2b52dfbc274cc39 100644 (file)
--- a/convert.c
+++ b/convert.c
@@ -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;