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-refs.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-refs.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -200,7 +200,7 @@ void cgit_print_branches(int maxcount)  		qsort(list.refs, maxcount, sizeof(*list.refs), cmp_ref_name);  	} -	for(i = 0; i < maxcount; i++) +	for (i = 0; i < maxcount; i++)  		print_branch(list.refs[i]);  	if (maxcount < list.count) @@ -224,7 +224,7 @@ void cgit_print_tags(int maxcount)  	else if (maxcount > list.count)  		maxcount = list.count;  	print_tag_header(); -	for(i = 0; i < maxcount; i++) +	for (i = 0; i < maxcount; i++)  		print_tag(list.refs[i]);  	if (maxcount < list.count) | 
