diff options
author | Christian Hesse <mail@eworm.de> | 2024-09-26 19:41:29 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2024-10-07 17:34:42 +0200 |
commit | c1733e28d91bea5647e11fe099751fbc839669d7 (patch) | |
tree | 99f8986536ebc727f86ebfee852910f31b412c97 /ui-shared.c | |
parent | 1cb701a9b615acf2d4a9f5c6c2668cd11343e124 (diff) | |
download | cgit-c1733e28d91bea5647e11fe099751fbc839669d7.tar.gz cgit-c1733e28d91bea5647e11fe099751fbc839669d7.tar.xz |
git: update to v2.47.0
Update to git version v2.47.0, this requires changes for these
upstream commits:
* e8207717f1623325fe1c95338fb03c1104ed5687
refs: add referent to each_ref_fn
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-shared.c')
-rw-r--r-- | ui-shared.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-shared.c b/ui-shared.c index 6fae72d..4250b89 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -936,8 +936,8 @@ void cgit_add_clone_urls(void (*fn)(const char *)) add_clone_urls(fn, ctx.cfg.clone_prefix, ctx.repo->url); } -static int print_branch_option(const char *refname, const struct object_id *oid, - int flags, void *cb_data) +static int print_branch_option(const char *refname, const char *referent UNUSED, + const struct object_id *oid, int flags, void *cb_data) { char *name = (char *)refname; html_option(name, name, ctx.qry.head); |