diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-07-30 00:24:38 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-07-30 12:24:54 -0700 |
commit | 299726d53841984450524f4ade428112e51c853e (patch) | |
tree | 4720c83b42145bbd3b910cfe20f6acd78db3522e /setup.c | |
parent | 5c759f96d020d7021a7e674c8d1e5bebd17dcd2f (diff) | |
download | git-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |