summaryrefslogtreecommitdiffabout
path: root/ui-summary.c
Unidiff
Diffstat (limited to 'ui-summary.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-summary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-summary.c b/ui-summary.c
index 532ddbf..cc918ad 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -43,13 +43,13 @@ static void cgit_print_branches()
43 html("<table class='list'>"); 43 html("<table class='list'>");
44 html("<tr><th>Branch name</th><th>Head commit</th></tr>\n"); 44 html("<tr><th>Branch name</th><th>Head commit</th></tr>\n");
45 for_each_branch_ref(cgit_print_branch_cb, NULL); 45 for_each_branch_ref(cgit_print_branch_cb, NULL);
46 html("</table>"); 46 html("</table>");
47} 47}
48 48
49void cgit_print_repo_summary() 49void cgit_print_summary()
50{ 50{
51 html("<h2>"); 51 html("<h2>");
52 html_txt("Repo summary page"); 52 html_txt("Repo summary page");
53 html("</h2>"); 53 html("</h2>");
54 cgit_print_branches(); 54 cgit_print_branches();
55} 55}