diff options
| -rw-r--r-- | cgit.c | 12 | ||||
| -rw-r--r-- | cgit.h | 12 | ||||
| -rw-r--r-- | ui-blob.c | 2 | ||||
| -rw-r--r-- | ui-patch.c | 2 | ||||
| -rw-r--r-- | ui-repolist.c | 2 | ||||
| -rw-r--r-- | ui-snapshot.c | 3 | 
6 files changed, 16 insertions, 17 deletions
| @@ -81,7 +81,7 @@ char *find_default_branch(struct cgit_repo *repo)  		return info.first_ref;  } -static void cgit_print_repo_page(struct cacheitem *item) +static void cgit_print_repo_page()  {  	char *tmp;  	int show_search; @@ -132,7 +132,7 @@ static void cgit_print_repo_page(struct cacheitem *item)  	}  	if ((cgit_cmd == CMD_SNAPSHOT) && ctx.repo->snapshots) { -		cgit_print_snapshot(item, ctx.qry.head, ctx.qry.sha1, +		cgit_print_snapshot(ctx.qry.head, ctx.qry.sha1,  				    cgit_repobasename(ctx.repo->url),  				    ctx.qry.path,  				    ctx.repo->snapshots ); @@ -140,12 +140,12 @@ static void cgit_print_repo_page(struct cacheitem *item)  	}  	if (cgit_cmd == CMD_PATCH) { -		cgit_print_patch(ctx.qry.sha1, item); +		cgit_print_patch(ctx.qry.sha1);  		return;  	}  	if (cgit_cmd == CMD_BLOB) { -		cgit_print_blob(item, ctx.qry.sha1, ctx.qry.path); +		cgit_print_blob(ctx.qry.sha1, ctx.qry.path);  		return;  	} @@ -210,9 +210,9 @@ static void cgit_fill_cache(struct cacheitem *item, int use_cache)  	ctx.page.modified = time(NULL);  	ctx.page.expires = ctx.page.modified + ttl_seconds(item->ttl);  	if (ctx.repo) -		cgit_print_repo_page(item); +		cgit_print_repo_page();  	else -		cgit_print_repolist(item); +		cgit_print_repolist();  	if (use_cache) {  		chk_zero(close(STDOUT_FILENO), "Close redirected STDOUT"); @@ -278,20 +278,20 @@ extern void cgit_print_filemode(unsigned short mode);  extern void cgit_print_branches(int maxcount);  extern void cgit_print_tags(int maxcount); -extern void cgit_print_repolist(struct cacheitem *item); +extern void cgit_print_repolist();  extern void cgit_print_summary();  extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep,  			   char *pattern, char *path, int pager); -extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path); +extern void cgit_print_blob(const char *hex, char *path);  extern void cgit_print_tree(const char *rev, char *path);  extern void cgit_print_commit(char *hex);  extern void cgit_print_refs();  extern void cgit_print_tag(char *revname);  extern void cgit_print_diff(const char *new_hex, const char *old_hex, const char *prefix); -extern void cgit_print_patch(char *hex, struct cacheitem *item); -extern void cgit_print_snapshot(struct cacheitem *item, const char *head, -				const char *hex, const char *prefix, -				const char *filename, int snapshot); +extern void cgit_print_patch(char *hex); +extern void cgit_print_snapshot(const char *head, const char *hex, +				const char *prefix, const char *filename, +				int snapshot);  extern void cgit_print_snapshot_links(const char *repo, const char *head,  				      const char *hex, int snapshots);  extern int cgit_parse_snapshots_mask(const char *str); @@ -9,7 +9,7 @@  #include "cgit.h"  #include "html.h" -void cgit_print_blob(struct cacheitem *item, const char *hex, char *path) +void cgit_print_blob(const char *hex, char *path)  {  	unsigned char sha1[20]; @@ -69,7 +69,7 @@ static void filepair_cb(struct diff_filepair *pair)  		html("Error running diff");  } -void cgit_print_patch(char *hex, struct cacheitem *item) +void cgit_print_patch(char *hex)  {  	struct commit *commit;  	struct commitinfo *info; diff --git a/ui-repolist.c b/ui-repolist.c index e663585..ad9b1bc 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -43,7 +43,7 @@ static void print_modtime(struct cgit_repo *repo)  	cgit_print_age(s.st_mtime, -1, NULL);  } -void cgit_print_repolist(struct cacheitem *item) +void cgit_print_repolist()  {  	int i, columns = 4;  	char *last_group = NULL; diff --git a/ui-snapshot.c b/ui-snapshot.c index 4449803..c741469 100644 --- a/ui-snapshot.c +++ b/ui-snapshot.c @@ -69,8 +69,7 @@ static const struct snapshot_archive_t {  #define snapshot_archives_len (sizeof(snapshot_archives) / sizeof(*snapshot_archives)) -void cgit_print_snapshot(struct cacheitem *item, const char *head, -			 const char *hex, const char *prefix, +void cgit_print_snapshot(const char *head, const char *hex, const char *prefix,  			 const char *filename, int snapshots)  {  	const struct snapshot_archive_t* sat; | 
