diff options
author | Russell Belfer <rb@github.com> | 2012-11-27 15:00:49 -0800 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2012-11-27 15:00:49 -0800 |
commit | c3fb7d04edecb68f0307dfaa48a311f0f72db90e (patch) | |
tree | 81e5424275d91ca002ef17aa5b1bc2c3fba2d07c /src/odb_loose.c | |
parent | f984d97b2208b48a6aec8877d0af357cca0c637d (diff) | |
download | libgit2-c3fb7d04edecb68f0307dfaa48a311f0f72db90e.tar.gz |
Make git_odb_foreach_cb take const param
This makes the first OID param of the ODB callback a const pointer
and also propogates that change all the way to the backends.
Diffstat (limited to 'src/odb_loose.c')
-rw-r--r-- | src/odb_loose.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/odb_loose.c b/src/odb_loose.c index 41121ae10..e2f1aec32 100644 --- a/src/odb_loose.c +++ b/src/odb_loose.c @@ -678,7 +678,7 @@ static int loose_backend__exists(git_odb_backend *backend, const git_oid *oid) struct foreach_state { size_t dir_len; - int (*cb)(git_oid *oid, void *data); + git_odb_foreach_cb cb; void *data; int cb_error; }; @@ -734,7 +734,7 @@ static int foreach_cb(void *_state, git_buf *path) return git_path_direach(path, foreach_object_dir_cb, state); } -static int loose_backend__foreach(git_odb_backend *_backend, int (*cb)(git_oid *oid, void *data), void *data) +static int loose_backend__foreach(git_odb_backend *_backend, git_odb_foreach_cb cb, void *data) { char *objects_dir; int error; |