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:

committed by
Jason A. Donenfeld

parent
5150b7c1e6
commit
e3d3fffdd4
@ -180,7 +180,7 @@ static int ls_item(const unsigned char *sha1, struct strbuf *base,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void ls_head()
|
||||
static void ls_head(void)
|
||||
{
|
||||
html("<table summary='tree listing' class='list'>\n");
|
||||
html("<tr class='nohover'>");
|
||||
@ -191,7 +191,7 @@ static void ls_head()
|
||||
html("</tr>\n");
|
||||
}
|
||||
|
||||
static void ls_tail()
|
||||
static void ls_tail(void)
|
||||
{
|
||||
html("</table>\n");
|
||||
}
|
||||
|
Reference in New Issue
Block a user