about summary refs log tree commit diff stats
path: root/scan-tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'scan-tree.c')
-rw-r--r--scan-tree.c4
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)
96 return; 96 return;
97 97
98 if (base == path) 98 if (base == path)
99 rel = xstrdup(fmt("%s", path)); 99 rel = xstrdup(path);
100 else 100 else
101 rel = xstrdup(fmt("%s", path + strlen(base) + 1)); 101 rel = xstrdup(path + strlen(base) + 1);
102 102
103 if (!strcmp(rel + strlen(rel) - 5, "/.git")) 103 if (!strcmp(rel + strlen(rel) - 5, "/.git"))
104 rel[strlen(rel) - 5] = '\0'; 104 rel[strlen(rel) - 5] = '\0';