about summary refs log tree commit diff stats
path: root/ui-shared.h
diff options
context:
space:
mode:
authorJohn Keeping2018-03-31 14:05:02 +0100
committerJason A. Donenfeld2018-06-27 18:11:19 +0200
commitbd1b281478c8d8ab45f723ac5818d58da4a64dd1 (patch)
tree69fb78b50ecb692deac12a2513cefba71e1d3698 /ui-shared.h
parentui-log: highlight annotated tags in different color (diff)
downloadcgit-bd1b281478c8d8ab45f723ac5818d58da4a64dd1.tar.gz
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-shared.h')
-rw-r--r--ui-shared.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-shared.h b/ui-shared.h index b760a17..b3eb8c5 100644 --- a/ui-shared.h +++ b/ui-shared.h
@@ -76,8 +76,8 @@ extern void cgit_print_pageheader(void);
76extern void cgit_print_filemode(unsigned short mode); 76extern void cgit_print_filemode(unsigned short mode);
77extern void cgit_compose_snapshot_prefix(struct strbuf *filename, 77extern void cgit_compose_snapshot_prefix(struct strbuf *filename,
78 const char *base, const char *ref); 78 const char *base, const char *ref);
79extern void cgit_print_snapshot_links(const char *repo, const char *head, 79extern void cgit_print_snapshot_links(const struct cgit_repo *repo,
80 const char *hex, int snapshots); 80 const char *head, const char *hex);
81extern void cgit_add_hidden_formfields(int incl_head, int incl_search, 81extern void cgit_add_hidden_formfields(int incl_head, int incl_search,
82 const char *page); 82 const char *page);
83 83