diff options
author | Vincent Ambo <mail@tazj.in> | 2020-11-21T18·59+0100 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2020-11-21T19·09+0100 |
commit | 1e81ce6622ef790b297ff48f1d0286f51e225aee (patch) | |
tree | 152c022824a5cd4970bb41daa1fe94937b87a0e9 /third_party/cgit/ui-patch.c | |
parent | f4609b896fac842433bd495c166d5987852a6a73 (diff) |
merge(3p/cgit): subtree merge at adcc4f82 r/1891
Change-Id: I16941629a17a2f39b9324cb85dc0cec6b104dfe4
Diffstat (limited to 'third_party/cgit/ui-patch.c')
-rw-r--r-- | third_party/cgit/ui-patch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/cgit/ui-patch.c b/third_party/cgit/ui-patch.c index 5a964108e51e..4ac03cbef1d8 100644 --- a/third_party/cgit/ui-patch.c +++ b/third_party/cgit/ui-patch.c @@ -61,7 +61,7 @@ void cgit_print_patch(const char *new_rev, const char *old_rev, } if (is_null_oid(&old_rev_oid)) { - memcpy(rev_range, oid_to_hex(&new_rev_oid), GIT_SHA1_HEXSZ + 1); + memcpy(rev_range, oid_to_hex(&new_rev_oid), the_hash_algo->hexsz + 1); } else { xsnprintf(rev_range, REV_RANGE_LEN, "%s..%s", oid_to_hex(&old_rev_oid), oid_to_hex(&new_rev_oid)); |