From eb5624e7fa89db93ae56931d1df48eca4ced8cf1 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 5 Jan 2016 15:02:07 +0100 Subject: [PATCH] fixup! fast-export: do not refer to non-existing marks --- builtin/fast-export.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/fast-export.c b/builtin/fast-export.c index f0a7311665..5f4fda4ef9 100644 --- a/builtin/fast-export.c +++ b/builtin/fast-export.c @@ -856,7 +856,7 @@ static void handle_reset(const char *name, struct object *object) get_object_mark(object)); else printf("reset %s\nfrom %s\n\n", name, - sha1_to_hex(object->sha1)); + oid_to_hex(&object->oid)); } static void handle_tags_and_duplicates(void)