aboutsummaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2007-07-30 00:24:38 +0100
committerJunio C Hamano <gitster@pobox.com>2007-07-30 12:24:54 -0700
commit299726d53841984450524f4ade428112e51c853e (patch)
tree4720c83b42145bbd3b910cfe20f6acd78db3522e /setup.c
parent5c759f96d020d7021a7e674c8d1e5bebd17dcd2f (diff)
downloadgit-299726d53841984450524f4ade428112e51c853e.tar.gz
git-299726d53841984450524f4ade428112e51c853e.tar.xz
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>
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c6
1 files changed, 3 insertions, 3 deletions
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)