From: Johannes Schindelin Date: Sun, 29 Jul 2007 23:24:38 +0000 (+0100) Subject: white space fixes in setup.c X-Git-Tag: v1.5.3-rc4~36 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=299726d53841984450524f4ade428112e51c853e;p=git.git white space fixes in setup.c Some lines were not indented by tabs but by spaces. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/setup.c b/setup.c index 7b07144af..b54d65fd0 100644 --- a/setup.c +++ b/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) { - if (strcmp(var, "core.repositoryformatversion") == 0) - repository_format_version = git_config_int(var, value); + if (strcmp(var, "core.repositoryformatversion") == 0) + repository_format_version = git_config_int(var, value); else if (strcmp(var, "core.sharedrepository") == 0) shared_repository = git_config_perm(var, value); - return 0; + return 0; } int check_repository_format(void)