diff options
| author | Jason A. Donenfeld <Jason@zx2c4.com> | 2013-03-03 23:21:33 -0500 | 
|---|---|---|
| committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2013-03-04 09:12:54 -0500 | 
| commit | bdae1d8a8d39206ac75ab86f8e9ef53b2f29432e (patch) | |
| tree | 683306f79bd96a45566879acd21e5ff085120acd /ui-repolist.c | |
| parent | Fix several whitespace errors (diff) | |
| download | cgit-bdae1d8a8d39206ac75ab86f8e9ef53b2f29432e.tar.gz cgit-bdae1d8a8d39206ac75ab86f8e9ef53b2f29432e.tar.bz2 cgit-bdae1d8a8d39206ac75ab86f8e9ef53b2f29432e.zip | |
White space around control verbs.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
| -rw-r--r-- | ui-repolist.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/ui-repolist.c b/ui-repolist.c index 449478d..1ae22aa 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -129,7 +129,7 @@ void print_pager(int items, int pagelen, char *search, char *sort)  	int i, ofs;  	char *class = NULL;  	html("<div class='pager'>"); -	for(i = 0, ofs = 0; ofs < items; i++, ofs = i * pagelen) { +	for (i = 0, ofs = 0; ofs < items; i++, ofs = i * pagelen) {  		class = (ctx.qry.ofs == ofs) ? "current" : NULL;  		cgit_index_link(fmt("[%d]", i + 1), fmt("Page %d", i + 1),  				class, search, sort, ofs); @@ -258,7 +258,7 @@ void cgit_print_repolist()  	if (ctx.cfg.index_header)  		html_include(ctx.cfg.index_header); -	if(ctx.qry.sort) +	if (ctx.qry.sort)  		sorted = sort_repolist(ctx.qry.sort);  	else if (ctx.cfg.section_sort)  		sort_repolist("section"); | 
