mirror of
https://git.zx2c4.com/cgit
synced 2025-07-22 03:44:22 +02:00
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:
parent
ed5bd30ebe
commit
42d5476f25
2 changed files with 3 additions and 3 deletions
|
@ -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';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue