white space fixes in setup.c
Some lines were not indented by tabs but by spaces. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
5c759f96d0
commit
299726d538
6
setup.c
6
setup.c
@ -382,11 +382,11 @@ int git_config_perm(const char *var, const char *value)
|
|||||||
|
|
||||||
int check_repository_format_version(const char *var, const char *value)
|
int check_repository_format_version(const char *var, const char *value)
|
||||||
{
|
{
|
||||||
if (strcmp(var, "core.repositoryformatversion") == 0)
|
if (strcmp(var, "core.repositoryformatversion") == 0)
|
||||||
repository_format_version = git_config_int(var, value);
|
repository_format_version = git_config_int(var, value);
|
||||||
else if (strcmp(var, "core.sharedrepository") == 0)
|
else if (strcmp(var, "core.sharedrepository") == 0)
|
||||||
shared_repository = git_config_perm(var, value);
|
shared_repository = git_config_perm(var, value);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int check_repository_format(void)
|
int check_repository_format(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user