diff options
| author | Lukas Fleischer <cgit@cryptocrack.de> | 2013-03-03 16:04:29 +0100 | 
|---|---|---|
| committer | Lukas Fleischer <cgit@cryptocrack.de> | 2013-03-04 01:12:48 +0100 | 
| commit | 53bc747d311d18642fa3ad0cc0de34f3899ed1f4 (patch) | |
| tree | 97e6fa2e4e7300f55a180917059b71e566c260fe /ui-refs.c | |
| parent | Update git to v1.7.12.4 (diff) | |
| download | cgit-53bc747d311d18642fa3ad0cc0de34f3899ed1f4.tar.gz cgit-53bc747d311d18642fa3ad0cc0de34f3899ed1f4.tar.bz2 cgit-53bc747d311d18642fa3ad0cc0de34f3899ed1f4.zip | |
Fix several whitespace errors
* Remove whitespace at the end of lines.
* Replace space indentation by tabs.
* Add whitespace before/after several operators ("+", "-", "*", ...)
* Add whitespace to assignments ("foo = bar;").
* Fix whitespace in parameter lists ("foobar(foo, bar, 42)").
Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
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) | 
