Skip to content

Commit 299726d

Browse files
dschogitster
authored andcommitted
white space fixes in setup.c
Some lines were not indented by tabs but by spaces. Signed-off-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 5c759f9 commit 299726d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -382,11 +382,11 @@ int git_config_perm(const char *var, const char *value)
382382

383383
int check_repository_format_version(const char *var, const char *value)
384384
{
385-
if (strcmp(var, "core.repositoryformatversion") == 0)
386-
repository_format_version = git_config_int(var, value);
385+
if (strcmp(var, "core.repositoryformatversion") == 0)
386+
repository_format_version = git_config_int(var, value);
387387
else if (strcmp(var, "core.sharedrepository") == 0)
388388
shared_repository = git_config_perm(var, value);
389-
return 0;
389+
return 0;
390390
}
391391

392392
int check_repository_format(void)

0 commit comments

Comments
 (0)