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
path: root/src/odb.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2011-08-16 15:05:05 +0400
committerVicent Marti <tanoku@gmail.com>2011-08-18 04:34:10 +0400
commitc85e08b1bda30c1a7e0a6e804f81665047fd8005 (patch)
tree4a30079c545060954773c4302d347ec75b5a2138 /src/odb.h
parent7adba5f49c5520f591c4e6519c5bea770a3e4b5d (diff)
odb: Do not pass around a header when hashing
Diffstat (limited to 'src/odb.h')
-rw-r--r--src/odb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odb.h b/src/odb.h
index f3685834e..1d4f07dcc 100644
--- a/src/odb.h
+++ b/src/odb.h
@@ -28,6 +28,6 @@ struct git_odb {
git_cache cache;
};
-int git_odb__hash_obj(git_oid *id, char *hdr, size_t n, int *len, git_rawobj *obj);
+int git_odb__hash_obj(git_oid *id, git_rawobj *obj);
#endif