Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Germishuys <jacquesg@striata.com>2014-04-21 13:23:29 +0400
committerJacques Germishuys <jacquesg@striata.com>2014-04-21 13:28:49 +0400
commit48e60ae75e78bc58aeb3c7ecf6be4653152182f4 (patch)
tree87c8911d80712458e49565c9250aa5e84e085060 /include/git2/sys/odb_backend.h
parent98020d3a73743d79c6acd380339b1d743205a86b (diff)
Don't redefine the same callback types, their signatures may change
Diffstat (limited to 'include/git2/sys/odb_backend.h')
-rw-r--r--include/git2/sys/odb_backend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/sys/odb_backend.h b/include/git2/sys/odb_backend.h
index 81bb082e6..77fe0dd31 100644
--- a/include/git2/sys/odb_backend.h
+++ b/include/git2/sys/odb_backend.h
@@ -81,7 +81,7 @@ struct git_odb_backend {
int (* writepack)(
git_odb_writepack **, git_odb_backend *, git_odb *odb,
- git_transfer_progress_callback progress_cb, void *progress_payload);
+ git_transfer_progress_cb progress_cb, void *progress_payload);
void (* free)(git_odb_backend *);
};