summaryrefslogtreecommitdiff
path: root/object.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2019-06-20 07:41:21 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-06-20 17:20:51 (GMT)
commita378509e1c8d817b3abe42bd8b3c8aa2a6f9af8a (patch)
treec22ee3fa74a81b5465535b3eb6aa9f1d90b0c692 /object.h
parent46931d39389f2886e6c159674923345f024e1c64 (diff)
downloadgit-a378509e1c8d817b3abe42bd8b3c8aa2a6f9af8a.zip
git-a378509e1c8d817b3abe42bd8b3c8aa2a6f9af8a.tar.gz
git-a378509e1c8d817b3abe42bd8b3c8aa2a6f9af8a.tar.bz2
object: convert create_object() to use object_id
There are no callers left of create_object() that aren't just passing us the "hash" member of a "struct object_id". Let's take the whole struct, which gets us closer to removing all raw sha1 variables. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'object.h')
-rw-r--r--object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/object.h b/object.h
index 4730118..0120892 100644
--- a/object.h
+++ b/object.h
@@ -118,7 +118,7 @@ struct object *get_indexed_object(unsigned int);
*/
struct object *lookup_object(struct repository *r, const struct object_id *oid);
-void *create_object(struct repository *r, const unsigned char *sha1, void *obj);
+void *create_object(struct repository *r, const struct object_id *oid, void *obj);
void *object_as_type(struct repository *r, struct object *obj, enum object_type type, int quiet);