White space around control verbs.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld
2013-03-03 23:21:33 -05:00
szülő 53bc747d31
commit bdae1d8a8d
16 fájl változott, egészen pontosan 42 új sor hozzáadva és 42 régi sor törölve

Fájl megtekintése

@ -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)