Skip to content

Commit d4cddd6

Browse files
pcloudsgitster
authored andcommitted
worktree.c: fix indentation
Signed-off-by: Nguyễn Thái Ngọc Duy <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a46dcfb commit d4cddd6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

worktree.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,10 @@ struct worktree **get_worktrees(void)
176176
if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
177177
continue;
178178

179-
if ((linked = get_linked_worktree(d->d_name))) {
180-
ALLOC_GROW(list, counter + 1, alloc);
181-
list[counter++] = linked;
182-
}
179+
if ((linked = get_linked_worktree(d->d_name))) {
180+
ALLOC_GROW(list, counter + 1, alloc);
181+
list[counter++] = linked;
182+
}
183183
}
184184
closedir(dir);
185185
}

0 commit comments

Comments
 (0)