aboutsummaryrefslogtreecommitdiffstats
path: root/ui-refs.c
diff options
context:
space:
mode:
authorGravatar Lukas Fleischer <cgit@cryptocrack.de>2013-03-04 00:04:29 (JST)
committerGravatar Lukas Fleischer <cgit@cryptocrack.de>2013-03-04 09:12:48 (JST)
commit53bc747d311d18642fa3ad0cc0de34f3899ed1f4 (patch)
tree97e6fa2e4e7300f55a180917059b71e566c260fe /ui-refs.c
parent7f4e8c33aeb65bdc5695c9fd13ec1ceb100303c7 (diff)
downloadcgit-53bc747d311d18642fa3ad0cc0de34f3899ed1f4.zip
cgit-53bc747d311d18642fa3ad0cc0de34f3899ed1f4.tar.gz
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 'ui-refs.c')
-rw-r--r--ui-refs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-refs.c b/ui-refs.c
index caddfbc..3827252 100644
--- a/ui-refs.c
+++ b/ui-refs.c
@@ -200,7 +200,7 @@ void cgit_print_branches(int maxcount)
200 qsort(list.refs, maxcount, sizeof(*list.refs), cmp_ref_name); 200 qsort(list.refs, maxcount, sizeof(*list.refs), cmp_ref_name);
201 } 201 }
202 202
203 for(i=0; i<maxcount; i++) 203 for(i = 0; i < maxcount; i++)
204 print_branch(list.refs[i]); 204 print_branch(list.refs[i]);
205 205
206 if (maxcount < list.count) 206 if (maxcount < list.count)
@@ -224,7 +224,7 @@ void cgit_print_tags(int maxcount)
224 else if (maxcount > list.count) 224 else if (maxcount > list.count)
225 maxcount = list.count; 225 maxcount = list.count;
226 print_tag_header(); 226 print_tag_header();
227 for(i=0; i<maxcount; i++) 227 for(i = 0; i < maxcount; i++)
228 print_tag(list.refs[i]); 228 print_tag(list.refs[i]);
229 229
230 if (maxcount < list.count) 230 if (maxcount < list.count)