Skip to content

Commit dc8e95b

Browse files
derrickstoleegitster
authored andcommitted
revision.c: fix whitespace
Here, four spaces were used instead of tab characters. Reported-by: Taylor Blau <[email protected]> Signed-off-by: Derrick Stolee <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 2dd4fed commit dc8e95b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

revision.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -695,11 +695,11 @@ static void prepare_to_use_bloom_filter(struct rev_info *revs)
695695

696696
/* remove single trailing slash from path, if needed */
697697
if (pi->match[last_index] == '/') {
698-
path_alloc = xstrdup(pi->match);
699-
path_alloc[last_index] = '\0';
700-
path = path_alloc;
698+
path_alloc = xstrdup(pi->match);
699+
path_alloc[last_index] = '\0';
700+
path = path_alloc;
701701
} else
702-
path = pi->match;
702+
path = pi->match;
703703

704704
len = strlen(path);
705705

0 commit comments

Comments
 (0)