mirror of
https://git.zx2c4.com/cgit
synced 2025-07-12 11:14:33 +02:00
Fix several whitespace errors
* Remove whitespace at the end of lines. * Replace space indentation by tabs. * Add whitespace before/after several operators ("+", "-", "*", ...) * Add whitespace to assignments ("foo = bar;"). * Fix whitespace in parameter lists ("foobar(foo, bar, 42)"). Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
This commit is contained in:
parent
7f4e8c33ae
commit
53bc747d31
14 changed files with 99 additions and 99 deletions
|
@ -106,7 +106,7 @@ static void add_repo(const char *base, const char *path, repo_config_fn fn)
|
|||
config_fn = fn;
|
||||
if (ctx.cfg.enable_git_config)
|
||||
git_config_from_file(gitconfig_config, fmt("%s/config", path), NULL);
|
||||
|
||||
|
||||
if (ctx.cfg.remove_suffix)
|
||||
if ((p = strrchr(repo->url, '.')) && !strcmp(p, ".git"))
|
||||
*p = '\0';
|
||||
|
@ -222,7 +222,7 @@ void scan_projects(const char *path, const char *projectsfile, repo_config_fn fn
|
|||
char line[MAX_PATH * 2], *z;
|
||||
FILE *projects;
|
||||
int err;
|
||||
|
||||
|
||||
projects = fopen(projectsfile, "r");
|
||||
if (!projects) {
|
||||
fprintf(stderr, "Error opening projectsfile %s: %s (%d)\n",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue