aboutsummaryrefslogtreecommitdiffstats
path: root/ui-tag.c
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2018-03-31 14:05:02 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2018-06-27 18:11:19 +0200
commitbd1b281478c8d8ab45f723ac5818d58da4a64dd1 (patch)
tree69fb78b50ecb692deac12a2513cefba71e1d3698 /ui-tag.c
parentui-log: highlight annotated tags in different color (diff)
downloadcgit-bd1b281478c8d8ab45f723ac5818d58da4a64dd1.tar.xz
cgit-bd1b281478c8d8ab45f723ac5818d58da4a64dd1.zip
ui-shared: pass repo object to print_snapshot_links()
Both call sites of cgit_print_snapshot_links() use the same values for the snapshot mask and repository name, which are derived from the cgit_repo structure so let's pass in the structure and access the fields directly. Signed-off-by: John Keeping <john@keeping.me.uk> Reviewed-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-tag.c')
-rw-r--r--ui-tag.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui-tag.c b/ui-tag.c
index 2c216d0..89a46f9 100644
--- a/ui-tag.c
+++ b/ui-tag.c
@@ -34,8 +34,7 @@ static void print_tag_content(char *buf)
static void print_download_links(char *revname)
{
html("<tr><th>download</th><td class='sha1'>");
- cgit_print_snapshot_links(ctx.qry.repo, ctx.qry.head,
- revname, ctx.repo->snapshots);
+ cgit_print_snapshot_links(ctx.repo, ctx.qry.head, revname);
html("</td></tr>");
}