mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 10:43:47 +08:00
Actually flip the order of the interpolated values
The previous commit was a no-op. Fix it.
This commit is contained in:
parent
e9b24327d0
commit
335f397277
|
@ -122,8 +122,8 @@ static int check_for_mutually_exclusive_flags(argparse_cmd_opts_t &opts, io_stre
|
|||
// testing easier.
|
||||
if (flag1 > flag2) {
|
||||
wcstring tmp(flag1);
|
||||
flag2 = flag1;
|
||||
flag1 = tmp;
|
||||
flag1 = flag2;
|
||||
flag2 = tmp;
|
||||
}
|
||||
streams.err.append_format(
|
||||
_(L"%ls: Mutually exclusive flags '%ls' and `%ls` seen\n"),
|
||||
|
|
Loading…
Reference in New Issue
Block a user