summaryrefslogtreecommitdiff
path: root/src/git_odb.c
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2008-10-31 18:23:01 -0700
committerShawn O. Pearce <spearce@spearce.org>2008-10-31 18:30:43 -0700
commit6533aadc21270052d8d05835b1e30d8b13a2f164 (patch)
treee9c9018f4b898a2be9aa0d053153cb7d8c8af22c /src/git_odb.c
parentde2220a48fcf7901432f8093d3223e65f4072ff7 (diff)
downloadlibgit2-6533aadc21270052d8d05835b1e30d8b13a2f164.tar.gz
Drop the _t suffix as it is a POSIX reserved namespace
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
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;