From: brian m. carlson Date: Mon, 5 Sep 2016 20:07:54 +0000 (+0000) Subject: builtin/blame: convert struct origin to use struct object_id X-Git-Tag: v2.11.0-rc0~142^2~17 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/a7bcfa126b686ea9f16bbba75e53261330f1aa58?hp=a7bcfa126b686ea9f16bbba75e53261330f1aa58 builtin/blame: convert struct origin to use struct object_id Convert struct origin to use struct object_id by applying the following semantic patch and the object_id transforms from contrib, plus the actual change to the struct: @@ struct origin E1; @@ - E1.blob_sha1 + E1.blob_oid.hash @@ struct origin *E1; @@ - E1->blob_sha1 + E1->blob_oid.hash Signed-off-by: brian m. carlson Signed-off-by: Junio C Hamano ---