diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2017-10-16 00:06:59 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-10-16 04:05:51 +0200 |
commit | 334dc52f49ee3e56a32142d3500fe93ef79aac67 (patch) | |
tree | b9f130941739b6515f7d3588331bc562e1376e3a /refs.h | |
parent | builtin/reflog: convert remaining unsigned char uses to object_id (diff) | |
download | git-334dc52f49ee3e56a32142d3500fe93ef79aac67.tar.xz git-334dc52f49ee3e56a32142d3500fe93ef79aac67.zip |
refs: convert dwim_log to 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
@@ -141,7 +141,7 @@ int refname_match(const char *abbrev_name, const char *full_name); int expand_ref(const char *str, int len, struct object_id *oid, char **ref); int dwim_ref(const char *str, int len, struct object_id *oid, char **ref); -int dwim_log(const char *str, int len, unsigned char *sha1, char **ref); +int dwim_log(const char *str, int len, struct object_id *oid, char **ref); /* * A ref_transaction represents a collection of reference updates that |