summaryrefslogtreecommitdiff
path: root/src/attr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/attr.c')
-rw-r--r--src/attr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/attr.c b/src/attr.c
index 102d0248c..d43a15f50 100644
--- a/src/attr.c
+++ b/src/attr.c
@@ -309,7 +309,8 @@ static int attr_setup(git_repository *repo, git_attr_session *attr_session)
if (error == 0)
error = preload_attr_file(
repo, attr_session, GIT_ATTR_FILE__FROM_FILE, NULL, sys.ptr);
- else if (error != GIT_ENOTFOUND)
+
+ if (error != GIT_ENOTFOUND)
return error;
git_buf_free(&sys);