all repos — cgit @ 42d5476f258e7909682f1b611da00d64507d45c6

a hyperfast web frontend for git written in c

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>
John Keeping john@keeping.me.uk
Sat, 06 Apr 2013 10:49:22 +0100
commit

42d5476f258e7909682f1b611da00d64507d45c6

parent

ed5bd30ebe6921dd22948a3f33a314283f043606

2 files changed, 3 insertions(+), 3 deletions(-)

jump to
M scan-tree.cscan-tree.c

@@ -96,9 +96,9 @@ if (!stat(fmt("%s/noweb", path), &st))

return; if (base == path) - rel = xstrdup(fmt("%s", path)); + rel = xstrdup(path); else - rel = xstrdup(fmt("%s", path + strlen(base) + 1)); + rel = xstrdup(path + strlen(base) + 1); if (!strcmp(rel + strlen(rel) - 5, "/.git")) rel[strlen(rel) - 5] = '\0';
M ui-plain.cui-plain.c

@@ -95,7 +95,7 @@ ctx.page.mimetype = "application/octet-stream";

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);