diff options
| author | John Keeping <john@keeping.me.uk> | 2015-03-08 16:32:16 +0000 | 
|---|---|---|
| committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2015-03-09 17:38:30 +0100 | 
| commit | e3d3fffdd447cdb4551549faae65bae5353a2cab (patch) | |
| tree | 43ab1eaeeabf9269d0eebb64e64e957183f41b4d /ui-tree.c | |
| parent | Makefile: add a target to run CGit through sparse (diff) | |
| download | cgit-e3d3fffdd447cdb4551549faae65bae5353a2cab.tar.gz cgit-e3d3fffdd447cdb4551549faae65bae5353a2cab.tar.bz2 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 '')
| -rw-r--r-- | ui-tree.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -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");  } | 
