From 0ce11fe951e3a1ba73b940563a4227cf45461489 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Scharfe?= Date: Sat, 28 Jan 2017 23:14:29 +0100 Subject: checkout: convert post_checkout_hook() to struct object_id Signed-off-by: Rene Scharfe Signed-off-by: Junio C Hamano diff --git a/builtin/checkout.c b/builtin/checkout.c index bfe685c..80d5e38 100644 --- a/builtin/checkout.c +++ b/builtin/checkout.c @@ -56,8 +56,8 @@ static int post_checkout_hook(struct commit *old, struct commit *new, int changed) { return run_hook_le(NULL, "post-checkout", - sha1_to_hex(old ? old->object.oid.hash : null_sha1), - sha1_to_hex(new ? new->object.oid.hash : null_sha1), + oid_to_hex(old ? &old->object.oid : &null_oid), + oid_to_hex(new ? &new->object.oid : &null_oid), changed ? "1" : "0", NULL); /* "new" can be NULL when checking out from the index before a commit exists. */ -- cgit v0.10.2-6-g49f6