diff options
author | John Keeping | 2018-03-31 14:05:02 +0100 |
---|---|---|
committer | Jason A. Donenfeld | 2018-06-27 18:11:19 +0200 |
commit | bd1b281478c8d8ab45f723ac5818d58da4a64dd1 (patch) | |
tree | 69fb78b50ecb692deac12a2513cefba71e1d3698 /ui-commit.c | |
parent | 0bb34ef130f05b865ee2a34d196ea6352590f673 (diff) | |
download | cgit-bd1b281478c8d8ab45f723ac5818d58da4a64dd1.tar.gz cgit-bd1b281478c8d8ab45f723ac5818d58da4a64dd1.tar.bz2 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-commit.c')
-rw-r--r-- | ui-commit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui-commit.c b/ui-commit.c index abf58f6..ea17461 100644 --- a/ui-commit.c +++ b/ui-commit.c | |||
@@ -110,8 +110,7 @@ void cgit_print_commit(char *hex, const char *prefix) | |||
110 | } | 110 | } |
111 | if (ctx.repo->snapshots) { | 111 | if (ctx.repo->snapshots) { |
112 | html("<tr><th>download</th><td colspan='2' class='sha1'>"); | 112 | html("<tr><th>download</th><td colspan='2' class='sha1'>"); |
113 | cgit_print_snapshot_links(ctx.qry.repo, ctx.qry.head, | 113 | cgit_print_snapshot_links(ctx.repo, ctx.qry.head, hex); |
114 | hex, ctx.repo->snapshots); | ||
115 | html("</td></tr>"); | 114 | html("</td></tr>"); |
116 | } | 115 | } |
117 | html("</table>\n"); | 116 | html("</table>\n"); |