diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2018-03-12 03:27:40 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-14 17:23:49 +0100 |
commit | ef7b5195f1ee8ceef41fb2f03a46248ad7747d69 (patch) | |
tree | 1edce34a072ce72c3ac1adf745beddb4f03b418d /streaming.h | |
parent | sha1_file: convert check_sha1_signature to struct object_id (diff) | |
download | git-ef7b5195f1ee8ceef41fb2f03a46248ad7747d69.tar.xz git-ef7b5195f1ee8ceef41fb2f03a46248ad7747d69.zip |
streaming: convert open_istream to use struct object_id
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'streaming.h')
-rw-r--r-- | streaming.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/streaming.h b/streaming.h index 73c1d156b3..32f4626771 100644 --- a/streaming.h +++ b/streaming.h @@ -8,7 +8,7 @@ /* opaque */ struct git_istream; -extern struct git_istream *open_istream(const unsigned char *, enum object_type *, unsigned long *, struct stream_filter *); +extern struct git_istream *open_istream(const struct object_id *, enum object_type *, unsigned long *, struct stream_filter *); extern int close_istream(struct git_istream *); extern ssize_t read_istream(struct git_istream *, void *, size_t); |