From 42d5476f258e7909682f1b611da00d64507d45c6 Mon Sep 17 00:00:00 2001 From: John Keeping Date: Sat, 6 Apr 2013 10:49:22 +0100 Subject: Remove redundant calls to fmt("%s", ...) After this change there is one remaining call 'fmt("%s", delim)' in ui-shared.c but is needed as delim is stack allocated and so cannot be returned from the function. Signed-off-by: John Keeping --- ui-plain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui-plain.c') diff --git a/ui-plain.c b/ui-plain.c index 482d53a..6b0d84b 100644 --- a/ui-plain.c +++ b/ui-plain.c @@ -95,7 +95,7 @@ static int print_object(const unsigned char *sha1, const char *path) else ctx.page.mimetype = "text/plain"; } - ctx.page.filename = fmt("%s", path); + ctx.page.filename = path; ctx.page.size = size; ctx.page.etag = sha1_to_hex(sha1); cgit_print_http_headers(&ctx); -- cgit v1.2.1