diff options
author | John Keeping <john@keeping.me.uk> | 2013-04-06 10:49:22 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2013-04-08 16:11:29 +0200 |
commit | 42d5476f258e7909682f1b611da00d64507d45c6 (patch) | |
tree | 38d67ace7e30cbb2aacc1f000df348654601539e /scan-tree.c | |
parent | Convert cgit_print_error to a variadic function (diff) | |
download | cgit-pink-42d5476f258e7909682f1b611da00d64507d45c6.tar.gz cgit-pink-42d5476f258e7909682f1b611da00d64507d45c6.zip |
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 'scan-tree.c')
-rw-r--r-- | scan-tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
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'; |