diff options
Diffstat (limited to 'src/crlf.c')
-rw-r--r-- | src/crlf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crlf.c b/src/crlf.c index 5fb1be516..303a46d3b 100644 --- a/src/crlf.c +++ b/src/crlf.c @@ -85,7 +85,7 @@ static int crlf_load_attributes(struct crlf_attrs *ca, git_repository *repo, con error = git_attr_get_many(attr_vals, repo, 0, path, NUM_CONV_ATTRS, attr_names); - if (error == GIT_NOTFOUND) { + if (error == GIT_ENOTFOUND) { ca->crlf_action = GIT_CRLF_GUESS; ca->eol = GIT_EOL_UNSET; return 0; |