summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/repository.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repository.c b/src/repository.c
index c9c28a944..cb62d9eb6 100644
--- a/src/repository.c
+++ b/src/repository.c
@@ -200,7 +200,7 @@ static git_repository *repository_alloc()
static int init_odb(git_repository *repo)
{
- return git_odb_open(&repo->db, repo->path_odb); /* TODO: Move odb.c to new error handling */
+ return git_odb_open(&repo->db, repo->path_odb);
}
int git_repository_open3(git_repository **repo_out,