Skip to content

Commit

Permalink
Merge branch 'ob/am-msgfix' into next
Browse files Browse the repository at this point in the history
The parameters to generate an error message have been corrected.

* ob/am-msgfix:
  am: fix error message in parse_opt_show_current_patch()
  • Loading branch information
gitster committed Sep 23, 2023
2 parents bbe2f75 + 43abaaf commit 7f7589a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion builtin/am.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7f7589a

Please sign in to comment.