about summary refs log tree commit diff stats
path: root/ui-tree.c
diff options
context:
space:
mode:
authorJohn Keeping2015-03-08 16:32:16 +0000
committerJason A. Donenfeld2015-03-09 17:38:30 +0100
commite3d3fffdd447cdb4551549faae65bae5353a2cab (patch)
tree43ab1eaeeabf9269d0eebb64e64e957183f41b4d /ui-tree.c
parentMakefile: add a target to run CGit through sparse (diff)
downloadcgit-e3d3fffdd447cdb4551549faae65bae5353a2cab.tar.gz
cgit-e3d3fffdd447cdb4551549faae65bae5353a2cab.zip
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>
Diffstat (limited to 'ui-tree.c')
-rw-r--r--ui-tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-tree.c b/ui-tree.c index 4ab0137..bbc468e 100644 --- a/ui-tree.c +++ b/ui-tree.c
@@ -180,7 +180,7 @@ static int ls_item(const unsigned char *sha1, struct strbuf *base,
180 return 0; 180 return 0;
181} 181}
182 182
183static void ls_head() 183static void ls_head(void)
184{ 184{
185 html("<table summary='tree listing' class='list'>\n"); 185 html("<table summary='tree listing' class='list'>\n");
186 html("<tr class='nohover'>"); 186 html("<tr class='nohover'>");
@@ -191,7 +191,7 @@ static void ls_head()
191 html("</tr>\n"); 191 html("</tr>\n");
192} 192}
193 193
194static void ls_tail() 194static void ls_tail(void)
195{ 195{
196 html("</table>\n"); 196 html("</table>\n");
197} 197}