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>
			
			
这个提交包含在:
		| @@ -96,9 +96,9 @@ static void add_repo(const char *base, const char *path, repo_config_fn fn) | ||||
| 		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'; | ||||
|   | ||||
| @@ -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); | ||||
|   | ||||
		在新工单中引用
	
	屏蔽一个用户
	 John Keeping
					John Keeping