Skip to content

Commit

Permalink
white space fixes in setup.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Johannes Schindelin authored and Junio C Hamano committed Jul 30, 2007
1 parent 5c759f9 commit 299726d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 299726d

Please sign in to comment.