diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2017-10-16 00:07:03 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-10-16 04:05:51 +0200 |
commit | 8eb36d9422a04a30ecc54fd69b4f836eafd10637 (patch) | |
tree | fcbafdd7eea7ab47cb5f90e2d2c4264e42690ed4 /refs.h | |
parent | refs: convert peel_ref to struct object_id (diff) | |
download | git-8eb36d9422a04a30ecc54fd69b4f836eafd10637.tar.xz git-8eb36d9422a04a30ecc54fd69b4f836eafd10637.zip |
refs: convert read_ref_at to struct object_id
Convert the callers and internals, including struct read_ref_at_cb, of
read_ref_at 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 'refs.h')
-rw-r--r-- | refs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -363,7 +363,7 @@ int safe_create_reflog(const char *refname, int force_create, struct strbuf *err /** Reads log for the value of ref during at_time. **/ int read_ref_at(const char *refname, unsigned int flags, timestamp_t at_time, int cnt, - unsigned char *sha1, char **msg, + struct object_id *oid, char **msg, timestamp_t *cutoff_time, int *cutoff_tz, int *cutoff_cnt); /** Check if a particular reflog exists */ |