summaryrefslogtreecommitdiff
path: root/builtin/branch.c
diff options
context:
space:
mode:
authorLibravatar Eric Sunshine <sunshine@sunshineco.com>2020-06-19 19:35:44 -0400
committerLibravatar Junio C Hamano <gitster@pobox.com>2020-06-22 10:31:15 -0700
commit03f2465bb1c1d9222181c493373e668c0ba7eb51 (patch)
tree48a952a386fd3eadc0bc2486f5e7dfe91eedf493 /builtin/branch.c
parentworktree: drop get_worktrees() special-purpose sorting option (diff)
downloadtgif-03f2465bb1c1d9222181c493373e668c0ba7eb51.tar.xz
worktree: drop get_worktrees() unused 'flags' argument
get_worktrees() accepts a 'flags' argument, however, there are no existing flags (the lone flag GWT_SORT_LINKED was recently retired) and no behavior which can be tweaked. Therefore, drop the 'flags' argument. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/branch.c')
-rw-r--r--builtin/branch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/branch.c b/builtin/branch.c
index d8297f80ff..5a2753018d 100644
--- a/builtin/branch.c
+++ b/builtin/branch.c
@@ -468,7 +468,7 @@ static void print_current_branch_name(void)
static void reject_rebase_or_bisect_branch(const char *target)
{
- struct worktree **worktrees = get_worktrees(0);
+ struct worktree **worktrees = get_worktrees();
int i;
for (i = 0; worktrees[i]; i++) {