diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-09-29 09:04:16 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-09-29 09:04:16 -0700 |
| commit | a03cc4ba1dd8eca619fb46e0fa3cba8b393e1652 (patch) | |
| tree | edb6461a320e1b33bece0ff35c31820a146f83d4 | |
| parent | Merge branch 'jk/test-pass-ubsan-options-to-http-test' (diff) | |
| parent | am: fix error message in parse_opt_show_current_patch() (diff) | |
| download | git-a03cc4ba1dd8eca619fb46e0fa3cba8b393e1652.tar.gz git-a03cc4ba1dd8eca619fb46e0fa3cba8b393e1652.zip | |
Merge branch 'ob/am-msgfix'
The parameters to generate an error message have been corrected.
* ob/am-msgfix:
am: fix error message in parse_opt_show_current_patch()
| -rw-r--r-- | builtin/am.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/am.c b/builtin/am.c index 202040b62e..6655059a57 100644 --- a/builtin/am.c +++ b/builtin/am.c @@ -2303,7 +2303,8 @@ static int parse_opt_show_current_patch(const struct option *opt, const char *ar if (resume->mode == RESUME_SHOW_PATCH && new_value != resume->sub_mode) return error(_("options '%s=%s' and '%s=%s' " "cannot be used together"), - "--show-current-patch", "--show-current-patch", arg, valid_modes[resume->sub_mode]); + "--show-current-patch", arg, + "--show-current-patch", valid_modes[resume->sub_mode]); resume->mode = RESUME_SHOW_PATCH; resume->sub_mode = new_value; |
