summaryrefslogtreecommitdiff
path: root/src/git_odb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/git_odb.c')
-rw-r--r--src/git_odb.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/git_odb.c b/src/git_odb.c
index d7ae061ca..a92063390 100644
--- a/src/git_odb.c
+++ b/src/git_odb.c
@@ -35,21 +35,21 @@
#include "git_odb.h"
-struct git_odb_t {
+struct git_odb {
/** Path to the "objects" directory. */
const char *path;
/** Alternate databases to search. */
- git_odb_t **alternates;
+ git_odb **alternates;
/** Number of alternates available. */
unsigned n_alternates;
};
int git_odb_read(
- git_sobj_t *out,
- git_odb_t *db,
- const git_oid_t *id)
+ git_sobj *out,
+ git_odb *db,
+ const git_oid *id)
{
if (!git_odb__read_packed(out, db, id))
return GIT_SUCCESS;