aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--ui-diff.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/ui-diff.c b/ui-diff.c
index a7bc667..a53425d 100644
--- a/ui-diff.c
+++ b/ui-diff.c
@@ -172,11 +172,8 @@ void cgit_print_diffstat(const unsigned char *old_sha1,
html("<div class='diffstat-header'>");
cgit_diff_link("Diffstat", NULL, NULL, ctx.qry.head, ctx.qry.sha1,
ctx.qry.sha2, NULL, 0);
- if (prefix) {
- html(" (limited to '");
- html_txt(prefix);
- html("')");
- }
+ if (prefix)
+ htmlf(" (limited to '%s')", prefix);
html(" (");
ctx.qry.context = (save_context > 0 ? save_context : 3) << 1;
cgit_self_link("more", NULL, NULL, &ctx);