diff options
author | Edward Thomson <ethomson@microsoft.com> | 2013-09-25 10:49:25 -0400 |
---|---|---|
committer | Edward Thomson <ethomson@microsoft.com> | 2013-09-25 10:49:25 -0400 |
commit | e0b267afa841d89ed2258714f1a6fb444f43d33d (patch) | |
tree | 9b7a7bce883e65243ff1762ff8ded025148ba093 /include/git2/sys | |
parent | 4a1b40159b4b0b2a954d40e4489331e3f22c8994 (diff) | |
download | libgit2-e0b267afa841d89ed2258714f1a6fb444f43d33d.tar.gz |
That's the refdb, it's not the odb...
Diffstat (limited to 'include/git2/sys')
-rw-r--r-- | include/git2/sys/refdb_backend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/sys/refdb_backend.h b/include/git2/sys/refdb_backend.h index e0a24f433..addaa86fd 100644 --- a/include/git2/sys/refdb_backend.h +++ b/include/git2/sys/refdb_backend.h @@ -121,8 +121,8 @@ struct git_refdb_backend { void (*free)(git_refdb_backend *backend); }; -#define GIT_ODB_BACKEND_VERSION 1 -#define GIT_ODB_BACKEND_INIT {GIT_ODB_BACKEND_VERSION} +#define GIT_REFDB_BACKEND_VERSION 1 +#define GIT_REFDB_BACKEND_INIT {GIT_REFDB_BACKEND_VERSION} /** * Constructors for default filesystem-based refdb backend |