Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-09-01 00:31:42 +0300
committerJunio C Hamano <gitster@pobox.com>2023-09-01 00:31:42 +0300
commit3525f1dbc18ae36ca9c671e807d6aac2ac432600 (patch)
treed859e5176e42a3c92eb3160b4ca9e29700dce35b /sequencer.c
parent967bfc589421774886f006265bf7c78717274ed3 (diff)
parenta9b5955e07793ceadaad05315c1599226d01292f (diff)
Merge branch 'ob/sequencer-empty-hint-fix'
The use of API for consistency between two calls to require_clean_work_tree() from the sequencer code has been cleaned up. * ob/sequencer-empty-hint-fix: sequencer: rectify empty hint in call of require_clean_work_tree()
Diffstat (limited to 'sequencer.c')
-rw-r--r--sequencer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sequencer.c b/sequencer.c
index 48475d1cc6..a66dcf8ab2 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -6229,7 +6229,7 @@ int complete_action(struct repository *r, struct replay_opts *opts, unsigned fla
if (checkout_onto(r, opts, onto_name, &oid, orig_head))
goto cleanup;
- if (require_clean_work_tree(r, "rebase", "", 1, 1))
+ if (require_clean_work_tree(r, "rebase", NULL, 1, 1))
goto cleanup;
todo_list_write_total_nr(&new_todo);