summaryrefslogtreecommitdiffabout
path: root/ui-summary.c
Unidiff
Diffstat (limited to 'ui-summary.c') (more/less context) (show 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 b4bc6d8..fdee66b 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -51,25 +51,25 @@ static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1,
51static void cgit_print_object_ref(struct object *obj) 51static void cgit_print_object_ref(struct object *obj)
52{ 52{
53 char *page, *arg, *url; 53 char *page, *arg, *url;
54 54
55 if (obj->type == OBJ_COMMIT) { 55 if (obj->type == OBJ_COMMIT) {
56 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, 56 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL,
57 cgit_query_head, sha1_to_hex(obj->sha1)); 57 cgit_query_head, sha1_to_hex(obj->sha1));
58 return; 58 return;
59 } else if (obj->type == OBJ_TREE) { 59 } else if (obj->type == OBJ_TREE) {
60 page = "tree"; 60 page = "tree";
61 arg = "id"; 61 arg = "id";
62 } else { 62 } else {
63 page = "view"; 63 page = "blob";
64 arg = "id"; 64 arg = "id";
65 } 65 }
66 66
67 url = cgit_pageurl(cgit_query_repo, page, 67 url = cgit_pageurl(cgit_query_repo, page,
68 fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); 68 fmt("%s=%s", arg, sha1_to_hex(obj->sha1)));
69 html_link_open(url, NULL, NULL); 69 html_link_open(url, NULL, NULL);
70 htmlf("%s %s", typename(obj->type), 70 htmlf("%s %s", typename(obj->type),
71 sha1_to_hex(obj->sha1)); 71 sha1_to_hex(obj->sha1));
72 html_link_close(); 72 html_link_close();
73} 73}
74 74
75static void print_tag_header() 75static void print_tag_header()