aboutsummaryrefslogtreecommitdiffstats
path: root/ui-plain.c
diff options
context:
space:
mode:
authorGravatar John Keeping <john@keeping.me.uk>2013-04-06 18:49:22 (JST)
committerGravatar Jason A. Donenfeld <Jason@zx2c4.com>2013-04-08 23:11:29 (JST)
commit42d5476f258e7909682f1b611da00d64507d45c6 (patch)
tree38d67ace7e30cbb2aacc1f000df348654601539e /ui-plain.c
parented5bd30ebe6921dd22948a3f33a314283f043606 (diff)
downloadcgit-42d5476f258e7909682f1b611da00d64507d45c6.zip
cgit-42d5476f258e7909682f1b611da00d64507d45c6.tar.gz
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 <john@keeping.me.uk>
Diffstat (limited to 'ui-plain.c')
-rw-r--r--ui-plain.c2
1 files changed, 1 insertions, 1 deletions
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)
95 else 95 else
96 ctx.page.mimetype = "text/plain"; 96 ctx.page.mimetype = "text/plain";
97 } 97 }
98 ctx.page.filename = fmt("%s", path); 98 ctx.page.filename = path;
99 ctx.page.size = size; 99 ctx.page.size = size;
100 ctx.page.etag = sha1_to_hex(sha1); 100 ctx.page.etag = sha1_to_hex(sha1);
101 cgit_print_http_headers(&ctx); 101 cgit_print_http_headers(&ctx);