From: Johan Herland Date: Tue, 9 Nov 2010 21:49:37 +0000 (+0100) Subject: notes.c: Hexify SHA1 in die() message from init_notes() X-Git-Tag: v1.7.4-rc0~82^2~22 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=327a89dca11ac78aee711e4ab440d2194b9914f8;p=git.git notes.c: Hexify SHA1 in die() message from init_notes() Signed-off-by: Johan Herland Signed-off-by: Junio C Hamano --- diff --git a/notes.c b/notes.c index 197824439..bb03eb036 100644 --- a/notes.c +++ b/notes.c @@ -940,7 +940,7 @@ void init_notes(struct notes_tree *t, const char *notes_ref, return; if (get_tree_entry(object_sha1, "", sha1, &mode)) die("Failed to read notes tree referenced by %s (%s)", - notes_ref, object_sha1); + notes_ref, sha1_to_hex(object_sha1)); hashclr(root_tree.key_sha1); hashcpy(root_tree.val_sha1, sha1);