diff options
Diffstat (limited to 'ui-shared.c')
-rw-r--r-- | ui-shared.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ui-shared.c b/ui-shared.c index 0c6d748..15bcb3f 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -1107,13 +1107,13 @@ void cgit_print_snapshot_links(const char *repo, const char *head, extern void cgit_author_link(const char *author, const char *head) { - char *delim; - - delim = repolink(NULL, NULL, "log", head ? head : ctx.qry.head, NULL); - html(delim); - htmlf("qt=author&q="); - html_url_arg(author); - html("'>"); - html_txt(author); - html("</a>"); + char *delim; + + delim = repolink(NULL, NULL, "log", head ? head : ctx.qry.head, NULL); + html(delim); + htmlf("qt=author&q="); + html_url_arg(author); + html("'>"); + html_txt(author); + html("</a>"); } |