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>
This commit is contained in:

کامیت شده توسط
Jason A. Donenfeld

والد
ed5bd30ebe
کامیت
42d5476f25
@ -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);
|
||||
|
مرجع در شماره جدید
Block a user