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 --- scan-tree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scan-tree.c') diff --git a/scan-tree.c b/scan-tree.c index 0d3e0ad..05caba5 100644 --- a/scan-tree.c +++ b/scan-tree.c @@ -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'; -- cgit 1.4.1 r>
about summary refs log tree commit diff
Commit message (Expand)Author
2015-08-13Makefile: include Git's config.mak.unameJohn Keeping
2015-08-13tests: allow shell to be overriddenJohn Keeping
2015-08-13redirect: cleanlinessJason A. Donenfeld
2015-08-13redirect: be more careful for different cgi setupsJason A. Donenfeld
2015-08-12ui-log: fix double countingJohn Keeping
2015-08-12log: allow users to follow a fileJohn Keeping
2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping
2015-08-12t0110: Chain together using &&Jason A. Donenfeld
2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld
2015-08-12filters: apply HTML escapingLazaros Koromilas
2015-08-12git: update to v2.5.0Christian Hesse
2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt