mirror of
https://git.zx2c4.com/cgit
synced 2024-11-09 18:18:42 +00:00
Avoid non-ANSI function declarations
Sparse says things like: warning: non-ANSI function declaration of function 'calc_ttl' Signed-off-by: John Keeping <john@keeping.me.uk>
This commit is contained in:
parent
5150b7c1e6
commit
e3d3fffdd4
2
cgit.c
2
cgit.c
@ -1013,7 +1013,7 @@ static void cgit_parse_args(int argc, const char **argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int calc_ttl()
|
static int calc_ttl(void)
|
||||||
{
|
{
|
||||||
if (!ctx.repo)
|
if (!ctx.repo)
|
||||||
return ctx.cfg.cache_root_ttl;
|
return ctx.cfg.cache_root_ttl;
|
||||||
|
2
filter.c
2
filter.c
@ -72,7 +72,7 @@ static inline void hook_write(struct cgit_filter *filter, ssize_t (*new_write)(s
|
|||||||
filter_write = new_write;
|
filter_write = new_write;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void unhook_write()
|
static inline void unhook_write(void)
|
||||||
{
|
{
|
||||||
assert(filter_write != NULL);
|
assert(filter_write != NULL);
|
||||||
assert(current_write_filter != NULL);
|
assert(current_write_filter != NULL);
|
||||||
|
@ -311,7 +311,7 @@ static void filepair_cb(struct diff_filepair *pair)
|
|||||||
cgit_ssdiff_footer();
|
cgit_ssdiff_footer();
|
||||||
}
|
}
|
||||||
|
|
||||||
void cgit_print_diff_ctrls()
|
void cgit_print_diff_ctrls(void)
|
||||||
{
|
{
|
||||||
int i, curr;
|
int i, curr;
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ static int print_branch(struct refinfo *ref)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_tag_header()
|
static void print_tag_header(void)
|
||||||
{
|
{
|
||||||
html("<tr class='nohover'><th class='left'>Tag</th>"
|
html("<tr class='nohover'><th class='left'>Tag</th>"
|
||||||
"<th class='left'>Download</th>"
|
"<th class='left'>Download</th>"
|
||||||
@ -234,7 +234,7 @@ void cgit_print_tags(int maxcount)
|
|||||||
cgit_free_reflist_inner(&list);
|
cgit_free_reflist_inner(&list);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cgit_print_refs()
|
void cgit_print_refs(void)
|
||||||
{
|
{
|
||||||
|
|
||||||
html("<table class='list nowrap'>");
|
html("<table class='list nowrap'>");
|
||||||
|
@ -117,7 +117,7 @@ static void print_sort_header(const char *title, const char *sort)
|
|||||||
htmlf("'>%s</a></th>", title);
|
htmlf("'>%s</a></th>", title);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_header()
|
static void print_header(void)
|
||||||
{
|
{
|
||||||
html("<tr class='nohover'>");
|
html("<tr class='nohover'>");
|
||||||
print_sort_header("Name", "name");
|
print_sort_header("Name", "name");
|
||||||
@ -247,7 +247,7 @@ static int sort_repolist(char *field)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void cgit_print_repolist()
|
void cgit_print_repolist(void)
|
||||||
{
|
{
|
||||||
int i, columns = 3, hits = 0, header = 0;
|
int i, columns = 3, hits = 0, header = 0;
|
||||||
char *last_section = NULL;
|
char *last_section = NULL;
|
||||||
@ -344,7 +344,7 @@ void cgit_print_repolist()
|
|||||||
cgit_print_docend();
|
cgit_print_docend();
|
||||||
}
|
}
|
||||||
|
|
||||||
void cgit_print_site_readme()
|
void cgit_print_site_readme(void)
|
||||||
{
|
{
|
||||||
if (!ctx.cfg.root_readme)
|
if (!ctx.cfg.root_readme)
|
||||||
return;
|
return;
|
||||||
|
12
ui-shared.c
12
ui-shared.c
@ -46,7 +46,7 @@ void cgit_vprint_error(const char *fmt, va_list ap)
|
|||||||
html("</div>\n");
|
html("</div>\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *cgit_httpscheme()
|
const char *cgit_httpscheme(void)
|
||||||
{
|
{
|
||||||
if (ctx.env.https && !strcmp(ctx.env.https, "on"))
|
if (ctx.env.https && !strcmp(ctx.env.https, "on"))
|
||||||
return "https://";
|
return "https://";
|
||||||
@ -54,7 +54,7 @@ const char *cgit_httpscheme()
|
|||||||
return "http://";
|
return "http://";
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *cgit_hosturl()
|
const char *cgit_hosturl(void)
|
||||||
{
|
{
|
||||||
if (ctx.env.http_host)
|
if (ctx.env.http_host)
|
||||||
return ctx.env.http_host;
|
return ctx.env.http_host;
|
||||||
@ -65,14 +65,14 @@ const char *cgit_hosturl()
|
|||||||
return fmtalloc("%s:%s", ctx.env.server_name, ctx.env.server_port);
|
return fmtalloc("%s:%s", ctx.env.server_name, ctx.env.server_port);
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *cgit_currenturl()
|
const char *cgit_currenturl(void)
|
||||||
{
|
{
|
||||||
if (!ctx.qry.url)
|
if (!ctx.qry.url)
|
||||||
return cgit_rooturl();
|
return cgit_rooturl();
|
||||||
return ctx.qry.url;
|
return ctx.qry.url;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *cgit_rooturl()
|
const char *cgit_rooturl(void)
|
||||||
{
|
{
|
||||||
if (ctx.cfg.virtual_root)
|
if (ctx.cfg.virtual_root)
|
||||||
return ctx.cfg.virtual_root;
|
return ctx.cfg.virtual_root;
|
||||||
@ -80,7 +80,7 @@ const char *cgit_rooturl()
|
|||||||
return ctx.cfg.script_name;
|
return ctx.cfg.script_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *cgit_loginurl()
|
const char *cgit_loginurl(void)
|
||||||
{
|
{
|
||||||
static const char *login_url = 0;
|
static const char *login_url = 0;
|
||||||
if (!login_url)
|
if (!login_url)
|
||||||
@ -735,7 +735,7 @@ void cgit_print_docstart(void)
|
|||||||
html_include(ctx.cfg.header);
|
html_include(ctx.cfg.header);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cgit_print_docend()
|
void cgit_print_docend(void)
|
||||||
{
|
{
|
||||||
html("</div> <!-- class=content -->\n");
|
html("</div> <!-- class=content -->\n");
|
||||||
if (ctx.cfg.embedded) {
|
if (ctx.cfg.embedded) {
|
||||||
|
16
ui-ssdiff.c
16
ui-ssdiff.c
@ -18,7 +18,7 @@ struct deferred_lines {
|
|||||||
static struct deferred_lines *deferred_old, *deferred_old_last;
|
static struct deferred_lines *deferred_old, *deferred_old_last;
|
||||||
static struct deferred_lines *deferred_new, *deferred_new_last;
|
static struct deferred_lines *deferred_new, *deferred_new_last;
|
||||||
|
|
||||||
static void create_or_reset_lcs_table()
|
static void create_or_reset_lcs_table(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -276,7 +276,7 @@ static void print_ssdiff_line(char *class,
|
|||||||
free(old_line);
|
free(old_line);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_deferred_old_lines()
|
static void print_deferred_old_lines(void)
|
||||||
{
|
{
|
||||||
struct deferred_lines *iter_old, *tmp;
|
struct deferred_lines *iter_old, *tmp;
|
||||||
iter_old = deferred_old;
|
iter_old = deferred_old;
|
||||||
@ -289,7 +289,7 @@ static void print_deferred_old_lines()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_deferred_new_lines()
|
static void print_deferred_new_lines(void)
|
||||||
{
|
{
|
||||||
struct deferred_lines *iter_new, *tmp;
|
struct deferred_lines *iter_new, *tmp;
|
||||||
iter_new = deferred_new;
|
iter_new = deferred_new;
|
||||||
@ -302,7 +302,7 @@ static void print_deferred_new_lines()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_deferred_changed_lines()
|
static void print_deferred_changed_lines(void)
|
||||||
{
|
{
|
||||||
struct deferred_lines *iter_old, *iter_new, *tmp;
|
struct deferred_lines *iter_old, *iter_new, *tmp;
|
||||||
int n_old_lines = calc_deferred_lines(deferred_old);
|
int n_old_lines = calc_deferred_lines(deferred_old);
|
||||||
@ -337,7 +337,7 @@ static void print_deferred_changed_lines()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void cgit_ssdiff_print_deferred_lines()
|
void cgit_ssdiff_print_deferred_lines(void)
|
||||||
{
|
{
|
||||||
if (!deferred_old && !deferred_new)
|
if (!deferred_old && !deferred_new)
|
||||||
return;
|
return;
|
||||||
@ -388,7 +388,7 @@ void cgit_ssdiff_line_cb(char *line, int len)
|
|||||||
line[len - 1] = c;
|
line[len - 1] = c;
|
||||||
}
|
}
|
||||||
|
|
||||||
void cgit_ssdiff_header_begin()
|
void cgit_ssdiff_header_begin(void)
|
||||||
{
|
{
|
||||||
current_old_line = -1;
|
current_old_line = -1;
|
||||||
current_new_line = -1;
|
current_new_line = -1;
|
||||||
@ -396,12 +396,12 @@ void cgit_ssdiff_header_begin()
|
|||||||
html("<tr><td class='head' colspan='4'>");
|
html("<tr><td class='head' colspan='4'>");
|
||||||
}
|
}
|
||||||
|
|
||||||
void cgit_ssdiff_header_end()
|
void cgit_ssdiff_header_end(void)
|
||||||
{
|
{
|
||||||
html("</td><tr>");
|
html("</td><tr>");
|
||||||
}
|
}
|
||||||
|
|
||||||
void cgit_ssdiff_footer()
|
void cgit_ssdiff_footer(void)
|
||||||
{
|
{
|
||||||
if (deferred_old || deferred_new)
|
if (deferred_old || deferred_new)
|
||||||
cgit_ssdiff_print_deferred_lines();
|
cgit_ssdiff_print_deferred_lines();
|
||||||
|
@ -40,7 +40,7 @@ static void print_url(const char *url)
|
|||||||
html("</a></td></tr>\n");
|
html("</a></td></tr>\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void cgit_print_summary()
|
void cgit_print_summary(void)
|
||||||
{
|
{
|
||||||
int columns = 3;
|
int columns = 3;
|
||||||
|
|
||||||
|
@ -180,7 +180,7 @@ static int ls_item(const unsigned char *sha1, struct strbuf *base,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ls_head()
|
static void ls_head(void)
|
||||||
{
|
{
|
||||||
html("<table summary='tree listing' class='list'>\n");
|
html("<table summary='tree listing' class='list'>\n");
|
||||||
html("<tr class='nohover'>");
|
html("<tr class='nohover'>");
|
||||||
@ -191,7 +191,7 @@ static void ls_head()
|
|||||||
html("</tr>\n");
|
html("</tr>\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ls_tail()
|
static void ls_tail(void)
|
||||||
{
|
{
|
||||||
html("</table>\n");
|
html("</table>\n");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user