aboutsummaryrefslogtreecommitdiff
path: root/builtin/blame.c
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2017-05-01 02:29:01 +0000
committerJunio C Hamano <gitster@pobox.com>2017-05-02 10:46:41 +0900
commit4931b02f4ab6cbffc39feca95a055ce1a92a20f9 (patch)
tree9a7c82c361a8063c9631a4ff2c14c43212c5ba2e /builtin/blame.c
parent48713bfa2e5aba8bbc0a53d5d34d7940d2d756e3 (diff)
downloadgit-4931b02f4ab6cbffc39feca95a055ce1a92a20f9.tar.gz
git-4931b02f4ab6cbffc39feca95a055ce1a92a20f9.tar.xz
builtin/blame: convert static function to struct object_id
This function is a caller of lookup_commit_reference_gently, which we will convert later. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/blame.c')
-rw-r--r--builtin/blame.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin/blame.c b/builtin/blame.c
index 07506a3e4..7d644d092 100644
--- a/builtin/blame.c
+++ b/builtin/blame.c
@@ -2461,7 +2461,7 @@ static const char *dwim_reverse_initial(struct scoreboard *sb)
*/
struct object *obj;
struct commit *head_commit;
- unsigned char head_sha1[20];
+ struct object_id head_oid;
if (sb->revs->pending.nr != 1)
return NULL;
@@ -2473,9 +2473,9 @@ static const char *dwim_reverse_initial(struct scoreboard *sb)
return NULL;
/* Do we have HEAD? */
- if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, head_sha1, NULL))
+ if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, head_oid.hash, NULL))
return NULL;
- head_commit = lookup_commit_reference_gently(head_sha1, 1);
+ head_commit = lookup_commit_reference_gently(head_oid.hash, 1);
if (!head_commit)
return NULL;