From e0cb7cdb898d65bca6f1f4ff1d80f15a09b576db Mon Sep 17 00:00:00 2001 From: "brian m. carlson" Date: Sun, 18 Aug 2019 20:04:21 +0000 Subject: wt-status: convert struct wt_status to object_id Change struct wt_status to use struct object_id instead of an array of unsigned char. Signed-off-by: brian m. carlson Signed-off-by: Junio C Hamano --- wt-status.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wt-status.h') diff --git a/wt-status.h b/wt-status.h index 77dad5b920..71c3f25f43 100644 --- a/wt-status.h +++ b/wt-status.h @@ -116,7 +116,7 @@ struct wt_status { int rename_limit; enum wt_status_format status_format; struct wt_status_state state; - unsigned char sha1_commit[GIT_MAX_RAWSZ]; /* when not Initial */ + struct object_id oid_commit; /* when not Initial */ /* These are computed during processing of the individual sections */ int committable; -- cgit v1.2.3